Urara-Blog/node_modules/.pnpm-store/v3/files/54/62934619ce9eb318e87525ac9b3820af04dfea75378b2fb936bdf9846d8570700243db77d5588aa13469dcb7bfb2c74922a658285c5ad3869075117ae93e56
2022-08-14 01:14:53 +08:00

15 lines
254 B
Text

var ListCache = require('./_ListCache');
/**
* Removes all key-value entries from the stack.
*
* @private
* @name clear
* @memberOf Stack
*/
function stackClear() {
this.__data__ = new ListCache;
this.size = 0;
}
module.exports = stackClear;