Skip to content

flatMapDeep

将嵌套数组的每个元素映射到给定的迭代函数,然后展开并平铺所有层级。

其工作方式与在 JavaScript 语言中调用 Array#flatArray#map 时相同,即 map(iteratee).flat(Infinity),但速度更快。

签名

typescript
function flattenDeep<T>(arr: T[]): Array<ExtractNestedArrayType<T>>;

参数

  • arr (T[]): 要展平的数组。
  • iteratee (T[]): 映射每个数组元素的函数。

返回值

(Array<ExtractNestedArrayType<T>>): 一个新数组,其中每个元素都已映射并展平到所需的深度。

示例

typescript
const array = [1, 2, 3];

const result1 = flatMapDeep(array, item => [item, item]);
// Return [1, 1, 2, 2, 3, 3]

const result2 = flatMapDeep(array, item => [[item, item]]);
// Return [1, 1, 2, 2, 3, 3]

const result3 = flatMapDeep(array, item => [[[item, item]]]);
// Return [1, 1, 2, 2, 3, 3]

采用 MIT 许可证发布。