summaryrefslogtreecommitdiffstats
path: root/node_modules/es-abstract/2015/IsPropertyDescriptor.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/es-abstract/2015/IsPropertyDescriptor.js')
-rw-r--r--node_modules/es-abstract/2015/IsPropertyDescriptor.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/node_modules/es-abstract/2015/IsPropertyDescriptor.js b/node_modules/es-abstract/2015/IsPropertyDescriptor.js
deleted file mode 100644
index 2a96c63..0000000
--- a/node_modules/es-abstract/2015/IsPropertyDescriptor.js
+++ /dev/null
@@ -1,17 +0,0 @@
-'use strict';
-
-var isPropertyDescriptor = require('../helpers/isPropertyDescriptor');
-
-var Type = require('./Type');
-var IsDataDescriptor = require('./IsDataDescriptor');
-var IsAccessorDescriptor = require('./IsAccessorDescriptor');
-
-// https://ecma-international.org/ecma-262/6.0/#sec-property-descriptor-specification-type
-
-module.exports = function IsPropertyDescriptor(Desc) {
- return isPropertyDescriptor({
- IsDataDescriptor: IsDataDescriptor,
- IsAccessorDescriptor: IsAccessorDescriptor,
- Type: Type
- }, Desc);
-};