CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
_stackClear.js16 linesDownload Raw Back to lodash-es
1import ListCache from './_ListCache.js';2 3/**4 * Removes all key-value entries from the stack.5 *6 * @private7 * @name clear8 * @memberOf Stack9 */10function stackClear() {11  this.__data__ = new ListCache;12  this.size = 0;13}14 15export default stackClear;16 
basant307/AI_Governance_Project · CoolFace