summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/lodash/_cacheHas.js
diff options
context:
space:
mode:
Diffstat (limited to 'bin/wiki/ImportarDesdeURL/node_modules/lodash/_cacheHas.js')
-rw-r--r--bin/wiki/ImportarDesdeURL/node_modules/lodash/_cacheHas.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/bin/wiki/ImportarDesdeURL/node_modules/lodash/_cacheHas.js b/bin/wiki/ImportarDesdeURL/node_modules/lodash/_cacheHas.js
new file mode 100644
index 00000000..2dec8926
--- /dev/null
+++ b/bin/wiki/ImportarDesdeURL/node_modules/lodash/_cacheHas.js
@@ -0,0 +1,13 @@
+/**
+ * Checks if a `cache` value for `key` exists.
+ *
+ * @private
+ * @param {Object} cache The cache to query.
+ * @param {string} key The key of the entry to check.
+ * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
+ */
+function cacheHas(cache, key) {
+ return cache.has(key);
+}
+
+module.exports = cacheHas;