Files
control-pane/public/novnc/node_modules/lodash/_stackClear.js
Charlie Root 58f2e80eb5 update
2022-07-31 09:56:11 +00: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;