UNPKG

underscore

Version:

JavaScript's functional programming helper library.

8 lines (6 loc) 284 B
import _flatten from './_flatten.js'; // Flatten out an array, either recursively (by default), or up to `depth`. // Passing `true` or `false` as `depth` means `1` or `Infinity`, respectively. export default function flatten(array, depth) { return _flatten(array, depth, false); }