Urara-Blog/node_modules/.pnpm-store/v3/files/ae/01c6f7b80d5c57659a5f745670015e9f8d8f9e23ddee7177530a73f23a4fc8c4a7eeef25819b66a7f1b3c44aa386a891313e0ddd5b4ba453ec1f9114808fb7
2022-08-14 01:14:53 +08:00

14 lines
316 B
Text

/**
* Checks if `value` is in the array cache.
*
* @private
* @name has
* @memberOf SetCache
* @param {*} value The value to search for.
* @returns {number} Returns `true` if `value` is found, else `false`.
*/
function setCacheHas(value) {
return this.__data__.has(value);
}
module.exports = setCacheHas;