GT2/GT2-iOS/node_modules/cssstyle/lib/properties/strokeDasharray.js

13 lines
262 B
JavaScript
Raw Normal View History

2018-02-12 17:26:06 +00:00
'use strict';
module.exports.definition = {
set: function (v) {
this._setProperty('stroke-dasharray', v);
},
get: function () {
return this.getPropertyValue('stroke-dasharray');
},
enumerable: true,
configurable: true
};