summaryrefslogtreecommitdiff
path: root/alarm/node_modules/lodash/_baseHasIn.js
diff options
context:
space:
mode:
Diffstat (limited to 'alarm/node_modules/lodash/_baseHasIn.js')
-rw-r--r--alarm/node_modules/lodash/_baseHasIn.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/alarm/node_modules/lodash/_baseHasIn.js b/alarm/node_modules/lodash/_baseHasIn.js
deleted file mode 100644
index 2e0d042..0000000
--- a/alarm/node_modules/lodash/_baseHasIn.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/**
- * The base implementation of `_.hasIn` without support for deep paths.
- *
- * @private
- * @param {Object} [object] The object to query.
- * @param {Array|string} key The key to check.
- * @returns {boolean} Returns `true` if `key` exists, else `false`.
- */
-function baseHasIn(object, key) {
- return object != null && key in Object(object);
-}
-
-module.exports = baseHasIn;