UNPKG

es-toolkit

Version:

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

19 lines (18 loc) 399 B
import { flattenDepth } from "./flattenDepth.mjs"; //#region src/compat/array/flatten.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] */ function flatten(array) { return flattenDepth(array, 1); } //#endregion export { flatten };