summaryrefslogtreecommitdiff
path: root/school/node_modules/cssstyle/lib/utils/getBasicPropertyDescriptor.js
diff options
context:
space:
mode:
Diffstat (limited to 'school/node_modules/cssstyle/lib/utils/getBasicPropertyDescriptor.js')
-rw-r--r--school/node_modules/cssstyle/lib/utils/getBasicPropertyDescriptor.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/school/node_modules/cssstyle/lib/utils/getBasicPropertyDescriptor.js b/school/node_modules/cssstyle/lib/utils/getBasicPropertyDescriptor.js
deleted file mode 100644
index ded2cc4..0000000
--- a/school/node_modules/cssstyle/lib/utils/getBasicPropertyDescriptor.js
+++ /dev/null
@@ -1,14 +0,0 @@
-'use strict';
-
-module.exports = function getBasicPropertyDescriptor(name) {
- return {
- set: function(v) {
- this._setProperty(name, v);
- },
- get: function() {
- return this.getPropertyValue(name);
- },
- enumerable: true,
- configurable: true,
- };
-};