Sha256: 8e39e9388327114e415c5b52ef431fba0e430907c0f4e03a94aa6b0cfbf45bce
Contents?: true
Size: 550 Bytes
Versions: 26
Compression:
Stored size: 550 Bytes
Contents
'use strict'; var parseNumber = require('../parsers').parseNumber; var POSITION_AT_SHORTHAND = require('../constants').POSITION_AT_SHORTHAND; module.exports.isValid = function isValid(v, positionAtFlexShorthand) { return parseNumber(v) !== undefined && positionAtFlexShorthand === POSITION_AT_SHORTHAND.second; }; module.exports.definition = { set: function (v) { this._setProperty('flex-shrink', parseNumber(v)); }, get: function () { return this.getPropertyValue('flex-shrink'); }, enumerable: true, configurable: true, };
Version data entries
26 entries across 26 versions & 1 rubygems