From d35e0862e6b60fe3c4f823371627359f3ce3e68b Mon Sep 17 00:00:00 2001 From: Alee14 Date: Fri, 28 Jul 2017 16:20:27 -0400 Subject: Removing node modules (go get them yourself :P) --- node_modules/superagent/lib/is-function.js | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 node_modules/superagent/lib/is-function.js (limited to 'node_modules/superagent/lib/is-function.js') diff --git a/node_modules/superagent/lib/is-function.js b/node_modules/superagent/lib/is-function.js deleted file mode 100644 index 5fb118e..0000000 --- a/node_modules/superagent/lib/is-function.js +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Check if `fn` is a function. - * - * @param {Function} fn - * @return {Boolean} - * @api private - */ -var isObject = require('./is-object'); - -function isFunction(fn) { - var tag = isObject(fn) ? Object.prototype.toString.call(fn) : ''; - return tag === '[object Function]'; -} - -module.exports = isFunction; -- cgit v1.2.3