diff options
Diffstat (limited to 'alarm/node_modules/lodash/_mapCacheHas.js')
-rw-r--r-- | alarm/node_modules/lodash/_mapCacheHas.js | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/alarm/node_modules/lodash/_mapCacheHas.js b/alarm/node_modules/lodash/_mapCacheHas.js deleted file mode 100644 index a1214c0..0000000 --- a/alarm/node_modules/lodash/_mapCacheHas.js +++ /dev/null @@ -1,16 +0,0 @@ -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; |