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 : 18.219.203.214
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 /
uri-js /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
schemes
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
index.ts
394
B
-rw-r--r--
2018-03-31 01:52
punycode.d.ts
594
B
-rw-r--r--
2018-05-03 20:45
regexps-iri.ts
112
B
-rw-r--r--
2017-03-24 15:09
regexps-uri.ts
7.89
KB
-rw-r--r--
2018-04-01 02:39
uri.ts
19.04
KB
-rw-r--r--
2018-05-03 20:45
util.ts
1.05
KB
-rw-r--r--
2018-04-10 15:35
Save
Rename
export function merge(...sets:Array<string>):string { if (sets.length > 1) { sets[0] = sets[0].slice(0, -1); const xl = sets.length - 1; for (let x = 1; x < xl; ++x) { sets[x] = sets[x].slice(1, -1); } sets[xl] = sets[xl].slice(1); return sets.join(''); } else { return sets[0]; } } export function subexp(str:string):string { return "(?:" + str + ")"; } export function typeOf(o:any):string { return o === undefined ? "undefined" : (o === null ? "null" : Object.prototype.toString.call(o).split(" ").pop().split("]").shift().toLowerCase()); } export function toUpperCase(str:string):string { return str.toUpperCase(); } export function toArray(obj:any):Array<any> { return obj !== undefined && obj !== null ? (obj instanceof Array ? obj : (typeof obj.length !== "number" || obj.split || obj.setInterval || obj.call ? [obj] : Array.prototype.slice.call(obj))) : []; } export function assign(target: object, source: any): any { const obj = target as any; if (source) { for (const key in source) { obj[key] = source[key]; } } return obj; }