Skip to content

flattenDepth

INFO

この関数は互換性のために es-toolkit/compat からのみインポートできます。代替可能なネイティブ JavaScript API があるか、まだ十分に最適化されていないためです。

es-toolkit/compat からこの関数をインポートすると、lodash と完全に同じように動作します。

配列を指定された深さまでフラット化します。

インターフェース

typescript
function flattenDepth<T, D extends number = 1>(value: T[] | object, depth: D): Array<FlatArray<T[], D>> | [];

パラメータ

  • value (T[] | object): フラット化する値。
  • depth (D): ネストされた配列構造をどの深さまでフラット化するかを指定する深さレベル。デフォルトは1です。

戻り値

(Array<FlatArray<T[], D>> | []): フラット化された新しい配列。

typescript
const arr = flattenDepth([1, [2, 3], [4, [5, 6]]], 1);
// Returns: [1, 2, 3, 4, [5, 6]]

const arr = flattenDepth([1, [2, 3], [4, [5, 6]]], 2);
// Returns: [1, 2, 3, 4, 5, 6]

MIT ライセンスの下で配布されています。