wallet-core/node_modules/arr-flatten/index.js

28 lines
470 B
JavaScript
Raw Normal View History

2016-10-10 03:43:44 +02:00
/*!
* arr-flatten <https://github.com/jonschlinkert/arr-flatten>
*
* Copyright (c) 2014-2015, 2017, Jon Schlinkert.
* Released under the MIT License.
2016-10-10 03:43:44 +02:00
*/
'use strict';
module.exports = function flatten(arr) {
return flat(arr, []);
};
function flat(arr, acc) {
2016-10-10 03:43:44 +02:00
var len = arr.length;
var idx = -1;
2016-10-10 03:43:44 +02:00
while (++idx < len) {
var cur = arr[idx];
2016-10-10 03:43:44 +02:00
if (Array.isArray(cur)) {
flat(cur, acc);
2016-10-10 03:43:44 +02:00
} else {
acc.push(cur);
2016-10-10 03:43:44 +02:00
}
}
return acc;
}