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) • 412 B
JavaScript
import { flattenDepth } from "./flattenDepth.mjs";
//#region src/compat/array/flattenDeep.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]
*/
function flattenDeep(array) {
return flattenDepth(array, Infinity);
}
//#endregion
export { flattenDeep };