1
0
Fork 1
mirror of https://github.com/MingweiSamuel/Riven.git synced 2025-01-22 08:47:27 -08:00
Riven/riven/srcgen/node_modules/lodash/_mapCacheHas.js

17 lines
382 B
JavaScript
Raw Normal View History

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;