main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
745 bytes
|
Line | |
---|
1 | import hashClear from './_hashClear.js';
|
---|
2 | import hashDelete from './_hashDelete.js';
|
---|
3 | import hashGet from './_hashGet.js';
|
---|
4 | import hashHas from './_hashHas.js';
|
---|
5 | import hashSet from './_hashSet.js';
|
---|
6 |
|
---|
7 | /**
|
---|
8 | * Creates a hash object.
|
---|
9 | *
|
---|
10 | * @private
|
---|
11 | * @constructor
|
---|
12 | * @param {Array} [entries] The key-value pairs to cache.
|
---|
13 | */
|
---|
14 | function Hash(entries) {
|
---|
15 | var index = -1,
|
---|
16 | length = entries == null ? 0 : entries.length;
|
---|
17 |
|
---|
18 | this.clear();
|
---|
19 | while (++index < length) {
|
---|
20 | var entry = entries[index];
|
---|
21 | this.set(entry[0], entry[1]);
|
---|
22 | }
|
---|
23 | }
|
---|
24 |
|
---|
25 | // Add methods to `Hash`.
|
---|
26 | Hash.prototype.clear = hashClear;
|
---|
27 | Hash.prototype['delete'] = hashDelete;
|
---|
28 | Hash.prototype.get = hashGet;
|
---|
29 | Hash.prototype.has = hashHas;
|
---|
30 | Hash.prototype.set = hashSet;
|
---|
31 |
|
---|
32 | export default Hash;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.