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