Code Review
/
aai
/
esr-gui.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
5d4b70cc46c64de744979bf4a21d71d5d4efe20d
[aai/esr-gui.git]
/
1
var nativeCreate = require('./_nativeCreate');
2
3
/**
4
* Removes all key-value entries from the hash.
5
*
6
* @private
7
* @name clear
8
* @memberOf Hash
9
*/
10
function hashClear() {
11
this.__data__ = nativeCreate ? nativeCreate(null) : {};
12
this.size = 0;
13
}
14
15
module.exports = hashClear;