ohctechv3/.svn/pristine/f1/f10a4d85636bf0a0495cb7222575c139c2963466.svn-base
2024-10-28 15:03:36 +05:30

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;