aboutsummaryrefslogtreecommitdiff
path: root/node_modules/superagent/lib/is-object.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/superagent/lib/is-object.js')
-rw-r--r--node_modules/superagent/lib/is-object.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/node_modules/superagent/lib/is-object.js b/node_modules/superagent/lib/is-object.js
deleted file mode 100644
index dff357c..0000000
--- a/node_modules/superagent/lib/is-object.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/**
- * Check if `obj` is an object.
- *
- * @param {Object} obj
- * @return {Boolean}
- * @api private
- */
-
-function isObject(obj) {
- return null !== obj && 'object' === typeof obj;
-}
-
-module.exports = isObject;