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.148.217.66
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 /
.bin /
Delete
Unzip
Name
Size
Permission
Date
Action
acorn
62
B
-rwxrwxr-x
2022-08-30 11:49
atob
122
B
-rwxrwxr-x
2022-08-30 11:49
autoprefixer
554
B
-rwxrwxr-x
2022-08-30 11:49
babylon
341
B
-rwxrwxr-x
2022-08-30 11:49
browser-sync
7.19
KB
-rwxrwxr-x
2022-08-30 11:49
browserslist
4.06
KB
-rwxrwxr-x
2022-08-30 11:49
color-support
127
B
-rwxrwxr-x
2022-08-30 11:49
cssbeautify
2.47
KB
-rwxrwxr-x
2022-08-30 11:49
csso
292
B
-rwxrwxr-x
2022-08-30 11:49
dev-ip
896
B
-rwxrwxr-x
2022-08-30 11:49
errno
440
B
-rwxrwxr-x
2022-08-30 11:49
esparse
4.83
KB
-rwxrwxr-x
2022-08-30 11:49
esvalidate
7.56
KB
-rwxrwxr-x
2022-08-30 11:49
gulp
44
B
-rwxrwxr-x
2022-08-30 11:49
handlebars
4.14
KB
-rwxrwxr-x
2022-08-30 11:49
is-docker
105
B
-rwxrwxr-x
2022-08-30 11:49
js-yaml
2.66
KB
-rwxrwxr-x
2022-08-30 11:49
jsesc
3.74
KB
-rwxrwxr-x
2022-08-30 11:49
json5
3.51
KB
-rwxrwxr-x
2022-08-30 11:49
loose-envify
356
B
-rwxrwxr-x
2022-08-30 11:49
lt
2.73
KB
-rwxrwxr-x
2022-08-30 11:49
marked
4.16
KB
-rwxrwxr-x
2022-08-30 11:49
mime
149
B
-rwxrwxr-x
2022-08-30 11:49
mkdirp
731
B
-rwxrwxr-x
2022-08-30 11:49
nanoid
1.1
KB
-rwxrwxr-x
2022-08-30 11:49
node-which
985
B
-rwxrwxr-x
2022-08-30 11:49
nopt
1.51
KB
-rwxrwxr-x
2022-08-30 11:49
panini
1.26
KB
-rwxrwxr-x
2022-08-30 11:49
parser
328
B
-rwxrwxr-x
2022-08-30 11:49
regjsparser
1.74
KB
-rwxrwxr-x
2022-08-30 11:49
resolve
1.44
KB
-rwxrwxr-x
2022-08-30 11:49
rimraf
1.83
KB
-rwxrwxr-x
2022-08-30 11:49
sass
196
B
-rwxrwxr-x
2022-08-30 11:49
semver
4.61
KB
-rwxrwxr-x
2022-08-30 11:49
svgo
55
B
-rwxrwxr-x
2022-08-30 11:49
terser
444
B
-rwxrwxr-x
2022-08-30 11:49
throttleproxy
2.16
KB
-rwxrwxr-x
2022-08-30 11:49
uglifyjs
22.92
KB
-rwxrwxr-x
2022-08-30 11:49
uuid
44
B
-rwxrwxr-x
2022-08-30 11:49
webpack
3.81
KB
-rwxrwxr-x
2022-08-30 11:49
Save
Rename
#!/usr/bin/env node var fs = require('fs') var browserslist = require('./') var updateDb = require('./update-db') var pkg = require('./package.json') var args = process.argv.slice(2) var USAGE = 'Usage:\n' + ' npx browserslist\n' + ' npx browserslist "QUERIES"\n' + ' npx browserslist --json "QUERIES"\n' + ' npx browserslist --config="path/to/browserlist/file"\n' + ' npx browserslist --coverage "QUERIES"\n' + ' npx browserslist --coverage=US "QUERIES"\n' + ' npx browserslist --coverage=US,RU,global "QUERIES"\n' + ' npx browserslist --env="environment name defined in config"\n' + ' npx browserslist --stats="path/to/browserlist/stats/file"\n' + ' npx browserslist --mobile-to-desktop\n' + ' npx browserslist --ignore-unknown-versions\n' + ' npx browserslist --update-db' function isArg(arg) { return args.some(function (str) { return str === arg || str.indexOf(arg + '=') === 0 }) } function error(msg) { process.stderr.write('browserslist: ' + msg + '\n') process.exit(1) } if (isArg('--help') || isArg('-h')) { process.stdout.write(pkg.description + '.\n\n' + USAGE + '\n') } else if (isArg('--version') || isArg('-v')) { process.stdout.write('browserslist ' + pkg.version + '\n') } else if (isArg('--update-db')) { /* c8 ignore next 3 */ updateDb(function (str) { process.stdout.write(str) }) } else { var mode = 'browsers' var opts = {} var queries var areas for (var i = 0; i < args.length; i++) { if (args[i][0] !== '-') { queries = args[i].replace(/^["']|["']$/g, '') continue } var arg = args[i].split('=') var name = arg[0] var value = arg[1] if (value) value = value.replace(/^["']|["']$/g, '') if (name === '--config' || name === '-b') { opts.config = value } else if (name === '--env' || name === '-e') { opts.env = value } else if (name === '--stats' || name === '-s') { opts.stats = value } else if (name === '--coverage' || name === '-c') { if (mode !== 'json') mode = 'coverage' if (value) { areas = value.split(',') } else { areas = ['global'] } } else if (name === '--json') { mode = 'json' } else if (name === '--mobile-to-desktop') { /* c8 ignore next */ opts.mobileToDesktop = true } else if (name === '--ignore-unknown-versions') { /* c8 ignore next */ opts.ignoreUnknownVersions = true } else { error('Unknown arguments ' + args[i] + '.\n\n' + USAGE) } } var browsers try { browsers = browserslist(queries, opts) } catch (e) { if (e.name === 'BrowserslistError') { error(e.message) } else /* c8 ignore start */ { throw e } /* c8 ignore end */ } var coverage if (mode === 'browsers') { browsers.forEach(function (browser) { process.stdout.write(browser + '\n') }) } else if (areas) { coverage = areas.map(function (area) { var stats if (area !== 'global') { stats = area } else if (opts.stats) { stats = JSON.parse(fs.readFileSync(opts.stats)) } var result = browserslist.coverage(browsers, stats) var round = Math.round(result * 100) / 100.0 return [area, round] }) if (mode === 'coverage') { var prefix = 'These browsers account for ' process.stdout.write(prefix) coverage.forEach(function (data, index) { var area = data[0] var round = data[1] var end = 'globally' if (area && area !== 'global') { end = 'in the ' + area.toUpperCase() } else if (opts.stats) { end = 'in custom statistics' } if (index !== 0) { process.stdout.write(prefix.replace(/./g, ' ')) } process.stdout.write(round + '% of all users ' + end + '\n') }) } } if (mode === 'json') { var data = { browsers: browsers } if (coverage) { data.coverage = coverage.reduce(function (object, j) { object[j[0]] = j[1] return object }, {}) } process.stdout.write(JSON.stringify(data, null, ' ') + '\n') } }