aboutsummaryrefslogtreecommitdiff
path: root/node_modules/zip-stream/node_modules/lodash/hasIn.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/zip-stream/node_modules/lodash/hasIn.js')
-rw-r--r--node_modules/zip-stream/node_modules/lodash/hasIn.js34
1 files changed, 0 insertions, 34 deletions
diff --git a/node_modules/zip-stream/node_modules/lodash/hasIn.js b/node_modules/zip-stream/node_modules/lodash/hasIn.js
deleted file mode 100644
index 06a368654..000000000
--- a/node_modules/zip-stream/node_modules/lodash/hasIn.js
+++ /dev/null
@@ -1,34 +0,0 @@
-var baseHasIn = require('./_baseHasIn'),
- hasPath = require('./_hasPath');
-
-/**
- * Checks if `path` is a direct or inherited property of `object`.
- *
- * @static
- * @memberOf _
- * @since 4.0.0
- * @category Object
- * @param {Object} object The object to query.
- * @param {Array|string} path The path to check.
- * @returns {boolean} Returns `true` if `path` exists, else `false`.
- * @example
- *
- * var object = _.create({ 'a': _.create({ 'b': 2 }) });
- *
- * _.hasIn(object, 'a');
- * // => true
- *
- * _.hasIn(object, 'a.b');
- * // => true
- *
- * _.hasIn(object, ['a', 'b']);
- * // => true
- *
- * _.hasIn(object, 'b');
- * // => false
- */
-function hasIn(object, path) {
- return object != null && hasPath(object, path, baseHasIn);
-}
-
-module.exports = hasIn;