dotfiles/vscode/.vscode/extensions/randomfractalsinc.vscode-data-preview-2.3.0/node_modules/lodash/_stackClear.js
Errol Sancaktar ff17c17e23 vscode
2024-06-14 09:31:58 -06:00

16 lines
254 B
JavaScript

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;