summaryrefslogtreecommitdiff
path: root/alarm/node_modules/cssstyle/lib/properties/flexGrow.js
diff options
context:
space:
mode:
Diffstat (limited to 'alarm/node_modules/cssstyle/lib/properties/flexGrow.js')
-rw-r--r--alarm/node_modules/cssstyle/lib/properties/flexGrow.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/alarm/node_modules/cssstyle/lib/properties/flexGrow.js b/alarm/node_modules/cssstyle/lib/properties/flexGrow.js
new file mode 100644
index 0000000..6e29663
--- /dev/null
+++ b/alarm/node_modules/cssstyle/lib/properties/flexGrow.js
@@ -0,0 +1,19 @@
+'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.first;
+};
+
+module.exports.definition = {
+ set: function(v) {
+ this._setProperty('flex-grow', parseNumber(v));
+ },
+ get: function() {
+ return this.getPropertyValue('flex-grow');
+ },
+ enumerable: true,
+ configurable: true,
+};