setup-php/node_modules/cssstyle/lib/utils/getBasicPropertyDescriptor.js
Shivam Mathur 8f9786b73f init
2019-09-06 05:17:43 +05:30

15 lines
276 B
JavaScript

'use strict';
module.exports = function getBasicPropertyDescriptor(name) {
return {
set: function(v) {
this._setProperty(name, v);
},
get: function() {
return this.getPropertyValue(name);
},
enumerable: true,
configurable: true,
};
};