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

14 lines
271 B
Text

/**
* Gets the stack value for `key`.
*
* @private
* @name get
* @memberOf Stack
* @param {string} key The key of the value to get.
* @returns {*} Returns the entry value.
*/
function stackGet(key) {
return this.__data__.get(key);
}
module.exports = stackGet;