SIGN IN SIGN UP

A modern JavaScript utility library delivering modularity, performance, & extras.

0 0 6 JavaScript
2016-05-07 11:49:46 -07:00
define(['./_ListCache'], function(ListCache) {
2015-12-16 17:53:20 -08:00
/**
* Removes all key-value entries from the stack.
*
* @private
* @name clear
* @memberOf Stack
*/
function stackClear() {
2016-05-07 11:49:46 -07:00
this.__data__ = new ListCache;
2016-09-17 22:24:52 -07:00
this.size = 0;
2015-12-16 17:53:20 -08:00
}
return stackClear;
});