mirror of
https://github.com/Raghu-Ch/nodeRestAPI.git
synced 2026-02-10 12:43:02 -05:00
initial commit
This commit is contained in:
27
node_modules/arr-flatten/index.js
generated
vendored
Normal file
27
node_modules/arr-flatten/index.js
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
/*!
|
||||
* arr-flatten <https://github.com/jonschlinkert/arr-flatten>
|
||||
*
|
||||
* Copyright (c) 2014-2015, 2017, Jon Schlinkert.
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
module.exports = function flatten(arr) {
|
||||
return flat(arr, []);
|
||||
};
|
||||
|
||||
function flat(arr, acc) {
|
||||
var len = arr.length;
|
||||
var idx = -1;
|
||||
|
||||
while (++idx < len) {
|
||||
var cur = arr[idx];
|
||||
if (Array.isArray(cur)) {
|
||||
flat(cur, acc);
|
||||
} else {
|
||||
acc.push(cur);
|
||||
}
|
||||
}
|
||||
return acc;
|
||||
}
|
||||
Reference in New Issue
Block a user