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.135.201.190
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
fast-glob /
out /
utils /
Delete
Unzip
Name
Size
Permission
Date
Action
array.d.ts
145
B
-rw-rw-r--
2022-08-30 11:49
array.js
608
B
-rw-rw-r--
2022-08-30 11:49
errno.d.ts
118
B
-rw-rw-r--
2022-08-30 11:49
errno.js
234
B
-rw-rw-r--
2022-08-30 11:49
fs.d.ts
186
B
-rw-rw-r--
2022-08-30 11:49
fs.js
756
B
-rw-rw-r--
2022-08-30 11:49
index.d.ts
298
B
-rw-rw-r--
2022-08-30 11:49
index.js
596
B
-rw-rw-r--
2022-08-30 11:49
path.d.ts
368
B
-rw-rw-r--
2022-08-30 11:49
path.js
1.26
KB
-rw-rw-r--
2022-08-30 11:49
pattern.d.ts
2.29
KB
-rw-rw-r--
2022-08-30 11:49
pattern.js
6.76
KB
-rw-rw-r--
2022-08-30 11:49
stream.d.ts
141
B
-rw-rw-r--
2022-08-30 11:49
stream.js
629
B
-rw-rw-r--
2022-08-30 11:49
string.d.ts
124
B
-rw-rw-r--
2022-08-30 11:49
string.js
298
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.splitWhen = exports.flatten = void 0; function flatten(items) { return items.reduce((collection, item) => [].concat(collection, item), []); } exports.flatten = flatten; function splitWhen(items, predicate) { const result = [[]]; let groupIndex = 0; for (const item of items) { if (predicate(item)) { groupIndex++; result[groupIndex] = []; } else { result[groupIndex].push(item); } } return result; } exports.splitWhen = splitWhen;