frontend/.pnpm-store/v3/files/54/62934619ce9eb318e87525ac9b3820af04dfea75378b2fb936bdf9846d8570700243db77d5588aa13469dcb7bfb2c74922a658285c5ad3869075117ae93e56

16 lines
254 B
Plaintext

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;