8 lines
193 B
JavaScript
8 lines
193 B
JavaScript
import { flattenDeep } from './flattenDeep.mjs';
|
|
|
|
function flatMapDeep(arr, iteratee) {
|
|
return flattenDeep(arr.map((item, index) => iteratee(item, index, arr)));
|
|
}
|
|
|
|
export { flatMapDeep };
|