Urara-Blog/node_modules/.pnpm-store/v3/files/c2/9b25283089bb937e655450537013610bc02ebb1119ffec1c46657ad9359a70ed129450c28a36edb76953097ee44197255e7f8df945861b5d92c0dc7c2ca349
2022-08-14 01:14:53 +08:00

15 lines
281 B
Text

var nativeCreate = require('./_nativeCreate');
/**
* Removes all key-value entries from the hash.
*
* @private
* @name clear
* @memberOf Hash
*/
function hashClear() {
this.__data__ = nativeCreate ? nativeCreate(null) : {};
this.size = 0;
}
module.exports = hashClear;