diff options
Diffstat (limited to 'node_modules/es5-ext/function/#/lock.js')
-rw-r--r-- | node_modules/es5-ext/function/#/lock.js | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/node_modules/es5-ext/function/#/lock.js b/node_modules/es5-ext/function/#/lock.js deleted file mode 100644 index dcd93bb10..000000000 --- a/node_modules/es5-ext/function/#/lock.js +++ /dev/null @@ -1,14 +0,0 @@ -"use strict"; - -var callable = require("../../object/valid-callable") - - , apply = Function.prototype.apply; - -module.exports = function (/* …args*/) { - var fn = callable(this) - , args = arguments; - - return function () { - return apply.call(fn, this, args); -}; -}; |