版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

18 строки
354 B

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