Skip to main content
Module

x/lodash/_stackClear.js

A modern JavaScript utility library delivering modularity, performance, & extras.
Extremely Popular
Go to Latest
File
import ListCache from './_ListCache.js';
/** * Removes all key-value entries from the stack. * * @private * @name clear * @memberOf Stack */function stackClear() { this.__data__ = new ListCache; this.size = 0;}
export default stackClear;