Skip to content

Commit 6450195

Browse files
authored
fix(flatten): use for loop to avoid stack issues (#116)
* test(flatten): reproduce #108 * fix(flatten): use for loop to avoid stack issues
1 parent 0324d63 commit 6450195

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

src/flatten.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
export const flattenDeep = (args: any[]): any[] => {
2-
if (!Array.isArray(args)) {
3-
return args;
1+
export const flattenDeep = (array: any[]): any[] => {
2+
const flat = [] as any[];
3+
for (const item of array) {
4+
Array.isArray(item) ? flat.push(...flattenDeep(item)) : flat.push(item);
45
}
5-
return [].concat(...args.map(flattenDeep) as any);
6+
return flat;
67
};

test/flatten.test.ts

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { flattenDeep } from "../src/flatten";
2+
import {range} from "lodash";
23

34
it("is already flat", () => {
45
expect(flattenDeep([1, 2, 3])).toEqual([1, 2, 3]);
@@ -11,3 +12,8 @@ it("flattens shallowly", () => {
1112
it("flattens deeply", () => {
1213
expect(flattenDeep([1, 2, [3, [4, [5]]]])).toEqual([1, 2, 3, 4, 5]);
1314
});
15+
16+
it("flattens huge arrays", () => {
17+
const huge = range(0, 500000);
18+
expect(flattenDeep(huge)).toEqual(huge);
19+
});

0 commit comments

Comments
 (0)