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