Sha256: c946c72eb39ef2e5a04836b610e9877200e4269490930b21e64c29b1573624ed
Contents?: true
Size: 424 Bytes
Versions: 302
Compression:
Stored size: 424 Bytes
Contents
/** Used to stand-in for `undefined` hash values. */ var HASH_UNDEFINED = '__lodash_hash_undefined__'; /** * Adds `value` to the array cache. * * @private * @name add * @memberOf SetCache * @alias push * @param {*} value The value to cache. * @returns {Object} Returns the cache instance. */ function setCacheAdd(value) { this.__data__.set(value, HASH_UNDEFINED); return this; } module.exports = setCacheAdd;
Version data entries
302 entries across 279 versions & 33 rubygems