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

13 lines
264 B
JavaScript

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