Sha256: 89b580cfc2b47c5aba05bd124b807b82d007fa106ee3a7c9e61205c72cf654d0
Contents?: true
Size: 254 Bytes
Versions: 264
Compression:
Stored size: 254 Bytes
Contents
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;
Version data entries
264 entries across 262 versions & 29 rubygems