blob: ce8e5a92ffff8dc695376f0fcfd48c25aafc2327 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001var ListCache = require('./_ListCache');
2
3/**
4 * Removes all key-value entries from the stack.
5 *
6 * @private
7 * @name clear
8 * @memberOf Stack
9 */
10function stackClear() {
11 this.__data__ = new ListCache;
12 this.size = 0;
13}
14
15module.exports = stackClear;