Files
2025-11-28 19:45:44 -07:00

12 lines
286 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) => iteratee(item)));
}
exports.flatMapDeep = flatMapDeep;