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

12 lines
255 B
JavaScript

'use strict';
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const flatten = require('./flatten.js');
function flattenDepth(array, depth = 1) {
return flatten.flatten(array, depth);
}
exports.flattenDepth = flattenDepth;