Sha256: 245ad1992b0702813ed5630aaa8713e72310ae243e87e2e73f8ef2c92e0cdb3d
Contents?: true
Size: 382 Bytes
Versions: 153
Compression:
Stored size: 382 Bytes
Contents
/** * Sets `value` to `key` of the cache. * * @private * @name set * @memberOf _.memoize.Cache * @param {string} key The key of the value to cache. * @param {*} value The value to cache. * @returns {Object} Returns the cache object. */ function mapSet(key, value) { if (key != '__proto__') { this.__data__[key] = value; } return this; } module.exports = mapSet;
Version data entries
153 entries across 80 versions & 8 rubygems