pose / web /client /node_modules /cssstyle /lib /utils /getBasicPropertyDescriptor.js
amitesh11's picture
Upload 3019 files
369fac9 verified
raw
history blame contribute delete
276 Bytes
'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,
};
};