summaryrefslogtreecommitdiff
path: root/school/node_modules/cssstyle/lib/properties/borderLeft.js
diff options
context:
space:
mode:
Diffstat (limited to 'school/node_modules/cssstyle/lib/properties/borderLeft.js')
-rw-r--r--school/node_modules/cssstyle/lib/properties/borderLeft.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/school/node_modules/cssstyle/lib/properties/borderLeft.js b/school/node_modules/cssstyle/lib/properties/borderLeft.js
deleted file mode 100644
index a05945e..0000000
--- a/school/node_modules/cssstyle/lib/properties/borderLeft.js
+++ /dev/null
@@ -1,17 +0,0 @@
-'use strict';
-
-var shorthandSetter = require('../parsers').shorthandSetter;
-var shorthandGetter = require('../parsers').shorthandGetter;
-
-var shorthand_for = {
- 'border-left-width': require('./borderLeftWidth'),
- 'border-left-style': require('./borderLeftStyle'),
- 'border-left-color': require('./borderLeftColor'),
-};
-
-module.exports.definition = {
- set: shorthandSetter('border-left', shorthand_for),
- get: shorthandGetter('border-left', shorthand_for),
- enumerable: true,
- configurable: true,
-};