You can not 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
10 lines
299 B
3 years ago
|
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;
|