Version 1
[yaffs-website] / node_modules / uncss / node_modules / form-data / node_modules / lodash / _mapCacheHas.js
diff --git a/node_modules/uncss/node_modules/form-data/node_modules/lodash/_mapCacheHas.js b/node_modules/uncss/node_modules/form-data/node_modules/lodash/_mapCacheHas.js
new file mode 100644 (file)
index 0000000..a1214c0
--- /dev/null
@@ -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;