aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es5-ext/object/is-callable.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/es5-ext/object/is-callable.js')
-rw-r--r--node_modules/es5-ext/object/is-callable.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/node_modules/es5-ext/object/is-callable.js b/node_modules/es5-ext/object/is-callable.js
new file mode 100644
index 000000000..c55915bc3
--- /dev/null
+++ b/node_modules/es5-ext/object/is-callable.js
@@ -0,0 +1,7 @@
+// Deprecated
+
+"use strict";
+
+module.exports = function (obj) {
+ return typeof obj === "function";
+};