summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/lodash/_stackHas.js
diff options
context:
space:
mode:
Diffstat (limited to 'bin/wiki/ImportarDesdeURL/node_modules/lodash/_stackHas.js')
-rw-r--r--bin/wiki/ImportarDesdeURL/node_modules/lodash/_stackHas.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/bin/wiki/ImportarDesdeURL/node_modules/lodash/_stackHas.js b/bin/wiki/ImportarDesdeURL/node_modules/lodash/_stackHas.js
new file mode 100644
index 00000000..16a3ad11
--- /dev/null
+++ b/bin/wiki/ImportarDesdeURL/node_modules/lodash/_stackHas.js
@@ -0,0 +1,14 @@
+/**
+ * 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) {
+ return this.__data__.has(key);
+}
+
+module.exports = stackHas;