Sha256: 4b41ddbc15713b24902083119ad7f45e710a26358b871a700a857b3ecd85be81
Contents?: true
Size: 382 Bytes
Versions: 302
Compression:
Stored size: 382 Bytes
Contents
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;
Version data entries
302 entries across 279 versions & 33 rubygems