1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| "use strict";
| Object.defineProperty(exports, "__esModule", { value: true });
| exports.splitWhen = exports.flatten = void 0;
| function flatten(items) {
| return items.reduce((collection, item) => [].concat(collection, item), []);
| }
| exports.flatten = flatten;
| function splitWhen(items, predicate) {
| const result = [[]];
| let groupIndex = 0;
| for (const item of items) {
| if (predicate(item)) {
| groupIndex++;
| result[groupIndex] = [];
| }
| else {
| result[groupIndex].push(item);
| }
| }
| return result;
| }
| exports.splitWhen = splitWhen;
|
|