aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/call-bind-apply-helpers/actualApply.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--node_modules/call-bind-apply-helpers/actualApply.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/node_modules/call-bind-apply-helpers/actualApply.js b/node_modules/call-bind-apply-helpers/actualApply.js
new file mode 100644
index 0000000..ffa5135
--- /dev/null
+++ b/node_modules/call-bind-apply-helpers/actualApply.js
@@ -0,0 +1,10 @@
+'use strict';
+
+var bind = require('function-bind');
+
+var $apply = require('./functionApply');
+var $call = require('./functionCall');
+var $reflectApply = require('./reflectApply');
+
+/** @type {import('./actualApply')} */
+module.exports = $reflectApply || bind.call($call, $apply);