Version 1
[yaffs-website] / node_modules / grunt-legacy-util / node_modules / lodash / _stackHas.js
diff --git a/node_modules/grunt-legacy-util/node_modules/lodash/_stackHas.js b/node_modules/grunt-legacy-util/node_modules/lodash/_stackHas.js
new file mode 100644 (file)
index 0000000..7a3b0b9
--- /dev/null
@@ -0,0 +1,19 @@
+var assocHas = require('./_assocHas');
+
+/**
+ * Checks if a stack value for `key` exists.
+ *
+ * @private
+ * @name has
+ * @memberOf Stack
+ * @param {string} key The key of the entry to check.
+ * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
+ */
+function stackHas(key) {
+  var data = this.__data__,
+      array = data.array;
+
+  return array ? assocHas(array, key) : data.map.has(key);
+}
+
+module.exports = stackHas;