You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
299 B
JavaScript
10 lines
299 B
JavaScript
var _flatten = require('./_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.
|
|
function flatten(array, depth) {
|
|
return _flatten(array, depth, false);
|
|
}
|
|
|
|
module.exports = flatten;
|