summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/lodash/_listCacheHas.js
diff options
context:
space:
mode:
Diffstat (limited to 'bin/wiki/ImportarDesdeURL/node_modules/lodash/_listCacheHas.js')
-rw-r--r--bin/wiki/ImportarDesdeURL/node_modules/lodash/_listCacheHas.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/bin/wiki/ImportarDesdeURL/node_modules/lodash/_listCacheHas.js b/bin/wiki/ImportarDesdeURL/node_modules/lodash/_listCacheHas.js
new file mode 100644
index 00000000..2adf6714
--- /dev/null
+++ b/bin/wiki/ImportarDesdeURL/node_modules/lodash/_listCacheHas.js
@@ -0,0 +1,16 @@
+var assocIndexOf = require('./_assocIndexOf');
+
+/**
+ * Checks if a list cache value for `key` exists.
+ *
+ * @private
+ * @name has
+ * @memberOf ListCache
+ * @param {string} key The key of the entry to check.
+ * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
+ */
+function listCacheHas(key) {
+ return assocIndexOf(this.__data__, key) > -1;
+}
+
+module.exports = listCacheHas;