Files
2026-04-13 08:19:53 +08:00

8 lines
181 B
JavaScript

import { flatMapDepth } from './flatMapDepth.mjs';
function flatMapDeep(collection, iteratee) {
return flatMapDepth(collection, iteratee, Infinity);
}
export { flatMapDeep };