D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
washeet.softurecs.com
/
node_modules
/
@hapi
/
hoek
/
lib
/
Filename :
flatten.js
back
Copy
'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; };