Website/node_modules/cssstyle/lib/properties/strokeDashoffset.js

13 lines
264 B
JavaScript

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