es-toolkit
Version:
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
15 lines • 388 B
TypeScript
//#region src/compat/array/flatten.d.ts
/**
* Flattens array up to depth times.
*
* @template T
* @param array - The array to flatten.
* @returns Returns the new flattened array.
*
* @example
* flatten([1, [2, [3, [4]], 5]]);
* // => [1, 2, [3, [4]], 5]
*/
declare function flatten<T>(array: ArrayLike<T | readonly T[]> | null | undefined): T[];
//#endregion
export { flatten };