UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

17 lines (16 loc) 558 B
import { ListOfRecursiveArraysOrValues } from "../_internal/ListOfRecursiveArraysOrValues.js"; //#region src/compat/array/flattenDeep.d.ts /** * Recursively flattens array. * * @template T * @param array - The array to flatten. * @returns Returns the new flattened array. * * @example * flattenDeep([1, [2, [3, [4]], 5]]); * // => [1, 2, 3, 4, 5] */ declare function flattenDeep<T>(array: ListOfRecursiveArraysOrValues<T> | null | undefined): Array<T extends string ? T : T extends ArrayLike<any> ? never : T>; //#endregion export { flattenDeep };