1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-07-03 22:34:27 +00:00
Files
musix-oss/node_modules/lodash/_stackClear.js
MatteZ02 30022c7634 Modules
2020-03-03 22:30:50 +02: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;