hrms-manual/node_modules/cssstyle/lib/properties/float.js
2023-09-06 14:51:44 +07:00

12 lines
219 B
JavaScript

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