8 lines
146 B
JavaScript
8 lines
146 B
JavaScript
import { flatten } from './flatten.mjs';
|
|
|
|
function flattenDepth(array, depth = 1) {
|
|
return flatten(array, depth);
|
|
}
|
|
|
|
export { flattenDepth };
|