* This method is like `_.flatMap` except that it recursively flattens the * mapped results. * * @static * @memberOf _ * @since 4.7.0 * @category Collection * @param {Array|Object} collection The collection to iterate over. * @param {Function} [iteratee=_.ident
(collection, iteratee)
| 16911 | * // => [1, 1, 2, 2] |
| 16912 | */ |
| 16913 | function flatMapDeep(collection, iteratee) { |
| 16914 | return baseFlatten(map(collection, iteratee), INFINITY); |
| 16915 | } |
| 16916 | |
| 16917 | /** |
| 16918 | * This method is like `_.flatMap` except that it recursively flattens the |
nothing calls this directly
no test coverage detected