Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.15.28.86
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
arr-flatten /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE
1.06
KB
-rwxr--r--
2017-07-05 18:49
README.md
3.68
KB
-rwxr--r--
2017-04-14 11:22
index.js
418
B
-rw-r--r--
2017-07-05 18:50
package.json
2.51
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
/*! * arr-flatten <https://github.com/jonschlinkert/arr-flatten> * * Copyright (c) 2014-2017, Jon Schlinkert. * Released under the MIT License. */ 'use strict'; module.exports = function (arr) { return flat(arr, []); }; function flat(arr, res) { var i = 0, cur; var len = arr.length; for (; i < len; i++) { cur = arr[i]; Array.isArray(cur) ? flat(cur, res) : res.push(cur); } return res; }