Urara-Blog/node_modules/.pnpm-store/v3/files/2f/66630e9f4eca36adceeeb3ebdad2a3658082eda692c7c5ddd1dcd6e30e41e65edd5242e8b04be119453d2f06b72f9aea00a0d3bd5551186ae5544c8f9be67b
2022-08-14 01:14:53 +08:00

14 lines
323 B
Text

/**
* Checks if a stack value for `key` exists.
*
* @private
* @name has
* @memberOf Stack
* @param {string} key The key of the entry to check.
* @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
*/
function stackHas(key) {
return this.__data__.has(key);
}
module.exports = stackHas;