UNPKG

codetrix

Version:

A lightweight lodash-style utility library

7 lines (6 loc) 187 B
import { flatten } from "../../array"; describe('flatten', () => { it('flattens nested arrays', () => { expect(flatten([1, [2, [3, [4]]]])).toEqual([1, 2, 3, 4]); }); });