LendAndRegret/node_modules/es-toolkit/dist/array/flatMapDeep.js
2026-05-02 17:27:43 +08:00

12 lines
305 B
JavaScript

'use strict';
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const flattenDeep = require('./flattenDeep.js');
function flatMapDeep(arr, iteratee) {
return flattenDeep.flattenDeep(arr.map((item, index) => iteratee(item, index, arr)));
}
exports.flatMapDeep = flatMapDeep;