mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 20:15:06 +08:00
21 lines
370 B
JavaScript
21 lines
370 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
const internals = {};
|
||
|
|
|
||
|
|
|
||
|
|
module.exports = internals.flatten = function (array, target) {
|
||
|
|
|
||
|
|
const result = target || [];
|
||
|
|
|
||
|
|
for (let i = 0; i < array.length; ++i) {
|
||
|
|
if (Array.isArray(array[i])) {
|
||
|
|
internals.flatten(array[i], result);
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
result.push(array[i]);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
return result;
|
||
|
|
};
|