install-nix-action/node_modules/cssstyle/lib/properties/clear.js
Domen Kožar 08403cd828
v5
2019-11-13 17:14:48 +01:00

16 lines
373 B
JavaScript

'use strict';
var parseKeyword = require('../parsers').parseKeyword;
var clear_keywords = ['none', 'left', 'right', 'both', 'inherit'];
module.exports.definition = {
set: function(v) {
this._setProperty('clear', parseKeyword(v, clear_keywords));
},
get: function() {
return this.getPropertyValue('clear');
},
enumerable: true,
configurable: true,
};