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, 0 insertions, 19 deletions
diff --git a/alarm/node_modules/cssstyle/lib/properties/flexGrow.js b/alarm/node_modules/cssstyle/lib/properties/flexGrow.js
deleted file mode 100644
index 6e29663..0000000
--- a/alarm/node_modules/cssstyle/lib/properties/flexGrow.js
+++ /dev/null
@@ -1,19 +0,0 @@
-'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,
-};