1
0
mirror of https://github.com/actions/setup-node synced 2025-05-05 06:33:54 +00:00
setup-node/node_modules/cssstyle/lib/properties/height.js
eric sciple 2b95e76931 .
2020-01-24 12:20:19 -05:00

25 lines
485 B
JavaScript

'use strict';
var parseMeasurement = require('../parsers').parseMeasurement;
function parse(v) {
if (String(v).toLowerCase() === 'auto') {
return 'auto';
}
if (String(v).toLowerCase() === 'inherit') {
return 'inherit';
}
return parseMeasurement(v);
}
module.exports.definition = {
set: function(v) {
this._setProperty('height', parse(v));
},
get: function() {
return this.getPropertyValue('height');
},
enumerable: true,
configurable: true,
};