Sha256: 2d769f2390c318fd300f07e9c3cfd4e0d1f2d9857316b03aa416ed2b14636f88
Contents?: true
Size: 405 Bytes
Versions: 273
Compression:
Stored size: 405 Bytes
Contents
/** * Removes `key` and its value from the stack. * * @private * @name delete * @memberOf Stack * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ function stackDelete(key) { var data = this.__data__, result = data['delete'](key); this.size = data.size; return result; } module.exports = stackDelete;
Version data entries
273 entries across 271 versions & 29 rubygems