main
Last change
on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
281 bytes
|
Rev | Line | |
---|
[79a0317] | 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;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.