8 lines
181 B
JavaScript
8 lines
181 B
JavaScript
import { flatMapDepth } from './flatMapDepth.mjs';
|
|
|
|
function flatMapDeep(collection, iteratee) {
|
|
return flatMapDepth(collection, iteratee, Infinity);
|
|
}
|
|
|
|
export { flatMapDeep };
|