-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.js
36 lines (29 loc) · 796 Bytes
/
index.js
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
export default function chunkify(iterable, chunkSize) {
if (typeof iterable[Symbol.iterator] !== 'function') {
throw new TypeError('Expected an `Iterable` in the first argument');
}
if (!(Number.isSafeInteger(chunkSize) && chunkSize > 0)) {
throw new TypeError(`Expected \`chunkSize\` to be an integer from 1 and up, got \`${chunkSize}\``);
}
return {
* [Symbol.iterator]() {
if (Array.isArray(iterable)) {
for (let index = 0; index < iterable.length; index += chunkSize) {
yield iterable.slice(index, index + chunkSize);
}
return;
}
let chunk = [];
for (const value of iterable) {
chunk.push(value);
if (chunk.length === chunkSize) {
yield chunk;
chunk = [];
}
}
if (chunk.length > 0) {
yield chunk;
}
},
};
}