aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es5-ext/function/#/spread.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/es5-ext/function/#/spread.js')
-rw-r--r--node_modules/es5-ext/function/#/spread.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/node_modules/es5-ext/function/#/spread.js b/node_modules/es5-ext/function/#/spread.js
deleted file mode 100644
index 755553b4e..000000000
--- a/node_modules/es5-ext/function/#/spread.js
+++ /dev/null
@@ -1,12 +0,0 @@
-"use strict";
-
-var callable = require("../../object/valid-callable")
-
- , apply = Function.prototype.apply;
-
-module.exports = function () {
- var fn = callable(this);
- return function (args) {
- return apply.call(fn, this, args);
-};
-};