Files
2026-04-13 08:19:53 +08:00

8 lines
146 B
JavaScript

import { flatten } from './flatten.mjs';
function flattenDepth(array, depth = 1) {
return flatten(array, depth);
}
export { flattenDepth };