mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-24 13:05:11 +08:00
16 lines
281 B
JavaScript
16 lines
281 B
JavaScript
|
|
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;
|