summaryrefslogtreecommitdiffstats
path: root/node_modules/es-abstract/2016/Call.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/es-abstract/2016/Call.js')
-rw-r--r--node_modules/es-abstract/2016/Call.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/node_modules/es-abstract/2016/Call.js b/node_modules/es-abstract/2016/Call.js
deleted file mode 100644
index f0f0451..0000000
--- a/node_modules/es-abstract/2016/Call.js
+++ /dev/null
@@ -1,13 +0,0 @@
-'use strict';
-
-var GetIntrinsic = require('../GetIntrinsic');
-var callBound = require('../helpers/callBound');
-
-var $apply = GetIntrinsic('%Reflect.apply%', true) || callBound('%Function.prototype.apply%');
-
-// https://www.ecma-international.org/ecma-262/6.0/#sec-call
-
-module.exports = function Call(F, V) {
- var args = arguments.length > 2 ? arguments[2] : [];
- return $apply(F, V, args);
-};