1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
|
/**
* Copyright (c) 2013-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @providesModule enumerate
*
*/
const KIND_KEYS = 'keys';
const KIND_VALUES = 'values';
const KIND_ENTRIES = 'entries';
/**
* Specific Array iterators.
*/
const ArrayIterators = function () {
let hasNative = hasNativeIterator(Array);
let ArrayIterator;
if (!hasNative) {
ArrayIterator = class ArrayIterator {
// 22.1.5.1 CreateArrayIterator Abstract Operation
constructor(array, kind) {
this._iteratedObject = array;
this._kind = kind;
this._nextIndex = 0;
}
// 22.1.5.2.1 %ArrayIteratorPrototype%.next()
next() {
if (this._iteratedObject == null) {
return { value: undefined, done: true };
}
let array = this._iteratedObject;
let len = this._iteratedObject.length;
let index = this._nextIndex;
let kind = this._kind;
if (index >= len) {
this._iteratedObject = undefined;
return { value: undefined, done: true };
}
this._nextIndex = index + 1;
if (kind === KIND_KEYS) {
return { value: index, done: false };
} else if (kind === KIND_VALUES) {
return { value: array[index], done: false };
} else if (kind === KIND_ENTRIES) {
return { value: [index, array[index]], done: false };
}
}
// 22.1.5.2.2 %ArrayIteratorPrototype%[@@iterator]()
[Symbol.iterator]() {
return this;
}
};
}
return {
keys: hasNative ? array => array.keys() : array => new ArrayIterator(array, KIND_KEYS),
values: hasNative ? array => array.values() : array => new ArrayIterator(array, KIND_VALUES),
entries: hasNative ? array => array.entries() : array => new ArrayIterator(array, KIND_ENTRIES)
};
}();
// -----------------------------------------------------------------
/**
* Specific String iterators.
*/
const StringIterators = function () {
let hasNative = hasNativeIterator(String);
let StringIterator;
if (!hasNative) {
StringIterator = class StringIterator {
// 21.1.5.1 CreateStringIterator Abstract Operation
constructor(string) {
this._iteratedString = string;
this._nextIndex = 0;
}
// 21.1.5.2.1 %StringIteratorPrototype%.next()
next() {
if (this._iteratedString == null) {
return { value: undefined, done: true };
}
let index = this._nextIndex;
let s = this._iteratedString;
let len = s.length;
if (index >= len) {
this._iteratedString = undefined;
return { value: undefined, done: true };
}
let ret;
let first = s.charCodeAt(index);
if (first < 0xD800 || first > 0xDBFF || index + 1 === len) {
ret = s[index];
} else {
let second = s.charCodeAt(index + 1);
if (second < 0xDC00 || second > 0xDFFF) {
ret = s[index];
} else {
ret = s[index] + s[index + 1];
}
}
this._nextIndex = index + ret.length;
return { value: ret, done: false };
}
// 21.1.5.2.2 %StringIteratorPrototype%[@@iterator]()
[Symbol.iterator]() {
return this;
}
};
}
return {
keys() {
throw TypeError(`Strings default iterator doesn't implement keys.`);
},
values: hasNative ? string => string[Symbol.iterator]() : string => new StringIterator(string),
entries() {
throw TypeError(`Strings default iterator doesn't implement entries.`);
}
};
}();
function hasNativeIterator(classObject) {
return typeof classObject.prototype[Symbol.iterator] === 'function' && typeof classObject.prototype.values === 'function' && typeof classObject.prototype.keys === 'function' && typeof classObject.prototype.entries === 'function';
}
// -----------------------------------------------------------------
/**
* Generic object iterator.
*/
class ObjectIterator {
constructor(object, kind) {
this._iteratedObject = object;
this._kind = kind;
this._keys = Object.keys(object);
this._nextIndex = 0;
}
next() {
let len = this._keys.length;
let index = this._nextIndex;
let kind = this._kind;
let key = this._keys[index];
if (index >= len) {
this._iteratedObject = undefined;
return { value: undefined, done: true };
}
this._nextIndex = index + 1;
if (kind === KIND_KEYS) {
return { value: key, done: false };
} else if (kind === KIND_VALUES) {
return { value: this._iteratedObject[key], done: false };
} else if (kind === KIND_ENTRIES) {
return { value: [key, this._iteratedObject[key]], done: false };
}
}
[Symbol.iterator]() {
return this;
}
}
/**
* Generic object iterator, iterates over all own enumerable
* properties. Used only if if no specific iterator is available,
* and object don't implement iterator protocol.
*/
const GenericIterators = {
keys(object) {
return new ObjectIterator(object, KIND_KEYS);
},
values(object) {
return new ObjectIterator(object, KIND_VALUES);
},
entries(object) {
return new ObjectIterator(object, KIND_ENTRIES);
}
};
// -----------------------------------------------------------------
/**
* Main iterator function. Returns default iterator based
* on the class of an instance.
*/
function enumerate(object, kind) {
// First check specific iterators.
if (typeof object === 'string') {
return StringIterators[kind || KIND_VALUES](object);
} else if (Array.isArray(object)) {
return ArrayIterators[kind || KIND_VALUES](object);
// Then see if an object implements own.
} else if (object[Symbol.iterator]) {
return object[Symbol.iterator]();
// And fallback to generic with entries.
} else {
return GenericIterators[kind || KIND_ENTRIES](object);
}
}
Object.assign(enumerate, {
/**
* Export constants
*/
KIND_KEYS,
KIND_VALUES,
KIND_ENTRIES,
/**
* Convenient explicit iterators for special kinds.
*/
keys(object) {
return enumerate(object, KIND_KEYS);
},
values(object) {
return enumerate(object, KIND_VALUES);
},
entries(object) {
return enumerate(object, KIND_ENTRIES);
},
generic: GenericIterators.entries
});
module.exports = enumerate;
|