Urara-Blog/node_modules/.pnpm-store/v3/files/1b/184a1e087f2fcde844d2a9cf88a115f678f0cc1257f79411b3e92ef519eaaf48c29be0df93c3a10fe980235b51e3c867caf282476f44596a798d146a965dac
2022-08-14 01:14:53 +08:00

19 lines
424 B
Text

/** 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;