版博士V2.0程序
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

17 satır
353 B

  1. 'use strict';
  2. var isValid = (module.exports.isValid = require('./borderWidth').isValid);
  3. module.exports.definition = {
  4. set: function(v) {
  5. if (isValid(v)) {
  6. this._setProperty('border-bottom-width', v);
  7. }
  8. },
  9. get: function() {
  10. return this.getPropertyValue('border-bottom-width');
  11. },
  12. enumerable: true,
  13. configurable: true,
  14. };