Version 1
[yaffs-website] / node_modules / grunt-legacy-log-utils / node_modules / lodash / _hashGet.js
diff --git a/node_modules/grunt-legacy-log-utils/node_modules/lodash/_hashGet.js b/node_modules/grunt-legacy-log-utils/node_modules/lodash/_hashGet.js
new file mode 100644 (file)
index 0000000..ba509b6
--- /dev/null
@@ -0,0 +1,28 @@
+var nativeCreate = require('./_nativeCreate');
+
+/** Used to stand-in for `undefined` hash values. */
+var HASH_UNDEFINED = '__lodash_hash_undefined__';
+
+/** Used for built-in method references. */
+var objectProto = Object.prototype;
+
+/** Used to check objects for own properties. */
+var hasOwnProperty = objectProto.hasOwnProperty;
+
+/**
+ * Gets the hash value for `key`.
+ *
+ * @private
+ * @param {Object} hash The hash to query.
+ * @param {string} key The key of the value to get.
+ * @returns {*} Returns the entry value.
+ */
+function hashGet(hash, key) {
+  if (nativeCreate) {
+    var result = hash[key];
+    return result === HASH_UNDEFINED ? undefined : result;
+  }
+  return hasOwnProperty.call(hash, key) ? hash[key] : undefined;
+}
+
+module.exports = hashGet;