1 var baseFlatten = require(
'./_baseFlatten'),
2 map = require(
'./map'),
3 toInteger = require(
'./toInteger');
26 function flatMapDepth(collection, iteratee, depth) {
27 depth = depth === undefined ? 1 : toInteger(depth);
28 return baseFlatten(map(collection, iteratee), depth);
31 module.exports = flatMapDepth;