Sha256: cf025a5fb7e480701d61e4ed60ed869fa835e0d0aed126daf0c62ba9b4d348ae
Contents?: true
Size: 337 Bytes
Versions: 273
Compression:
Stored size: 337 Bytes
Contents
/** * Checks if a `cache` value for `key` exists. * * @private * @param {Object} cache The cache to query. * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ function cacheHas(cache, key) { return cache.has(key); } module.exports = cacheHas;
Version data entries
273 entries across 271 versions & 29 rubygems