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.119.103.13
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 /
managers /
Delete
Unzip
Name
Size
Permission
Date
Action
patterns.d.ts
343
B
-rw-rw-r--
2022-08-30 11:49
patterns.js
959
B
-rw-rw-r--
2022-08-30 11:49
tasks.d.ts
1.2
KB
-rw-rw-r--
2022-08-30 11:49
tasks.js
3.94
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.removeDuplicateSlashes = exports.transform = void 0; /** * Matches a sequence of two or more consecutive slashes, excluding the first two slashes at the beginning of the string. * The latter is due to the presence of the device path at the beginning of the UNC path. * @todo rewrite to negative lookbehind with the next major release. */ const DOUBLE_SLASH_RE = /(?!^)\/{2,}/g; function transform(patterns) { return patterns.map((pattern) => removeDuplicateSlashes(pattern)); } exports.transform = transform; /** * This package only works with forward slashes as a path separator. * Because of this, we cannot use the standard `path.normalize` method, because on Windows platform it will use of backslashes. */ function removeDuplicateSlashes(pattern) { return pattern.replace(DOUBLE_SLASH_RE, '/'); } exports.removeDuplicateSlashes = removeDuplicateSlashes;