Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
WIKIPEDIA
/
nodejs
/
Notifications_Imali_API
/
node_modules
/
@hapi
/
hoek
/
lib
:
flatten.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
'use strict'; const internals = {}; module.exports = internals.flatten = function (array, target) { const result = target || []; for (const entry of array) { if (Array.isArray(entry)) { internals.flatten(entry, result); } else { result.push(entry); } } return result; };