-
-
Notifications
You must be signed in to change notification settings - Fork 184
Expand file tree
/
Copy pathArrayFlat.ts
More file actions
25 lines (24 loc) · 700 Bytes
/
ArrayFlat.ts
File metadata and controls
25 lines (24 loc) · 700 Bytes
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
export function __TS__ArrayFlat(this: any[], depth = 1): any[] {
const result: any[] = [];
let len = 0;
for (const i of $range(1, this.length)) {
const value = this[i - 1];
if (depth > 0 && Array.isArray(value)) {
let toAdd: any[];
if (depth === 1) {
toAdd = value;
} else {
toAdd = value.flat(depth - 1);
}
for (const j of $range(1, toAdd.length)) {
const val = toAdd[j - 1];
len++;
result[len - 1] = val;
}
} else {
len++;
result[len - 1] = value;
}
}
return result;
}