mirror of
https://github.com/Azure/setup-helm.git
synced 2025-11-07 21:16:57 +00:00
9 lines
299 B
JavaScript
9 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;
|