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.197.162
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 /
yargs /
build /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
typings
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
utils
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
argsert.js
2.42
KB
-rw-rw-r--
2022-08-30 11:49
command.js
17.71
KB
-rw-rw-r--
2022-08-30 11:49
completion-templates.js
1.42
KB
-rw-rw-r--
2022-08-30 11:49
completion.js
9.44
KB
-rw-rw-r--
2022-08-30 11:49
middleware.js
3.15
KB
-rw-rw-r--
2022-08-30 11:49
parse-command.js
1.04
KB
-rw-rw-r--
2022-08-30 11:49
usage.js
20.48
KB
-rw-rw-r--
2022-08-30 11:49
validation.js
12.36
KB
-rw-rw-r--
2022-08-30 11:49
yargs-factory.js
74.23
KB
-rw-rw-r--
2022-08-30 11:49
yerror.js
181
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
import { YError } from './yerror.js'; import { parseCommand } from './parse-command.js'; const positionName = ['first', 'second', 'third', 'fourth', 'fifth', 'sixth']; export function argsert(arg1, arg2, arg3) { function parseArgs() { return typeof arg1 === 'object' ? [{ demanded: [], optional: [] }, arg1, arg2] : [ parseCommand(`cmd ${arg1}`), arg2, arg3, ]; } try { let position = 0; const [parsed, callerArguments, _length] = parseArgs(); const args = [].slice.call(callerArguments); while (args.length && args[args.length - 1] === undefined) args.pop(); const length = _length || args.length; if (length < parsed.demanded.length) { throw new YError(`Not enough arguments provided. Expected ${parsed.demanded.length} but received ${args.length}.`); } const totalCommands = parsed.demanded.length + parsed.optional.length; if (length > totalCommands) { throw new YError(`Too many arguments provided. Expected max ${totalCommands} but received ${length}.`); } parsed.demanded.forEach(demanded => { const arg = args.shift(); const observedType = guessType(arg); const matchingTypes = demanded.cmd.filter(type => type === observedType || type === '*'); if (matchingTypes.length === 0) argumentTypeError(observedType, demanded.cmd, position); position += 1; }); parsed.optional.forEach(optional => { if (args.length === 0) return; const arg = args.shift(); const observedType = guessType(arg); const matchingTypes = optional.cmd.filter(type => type === observedType || type === '*'); if (matchingTypes.length === 0) argumentTypeError(observedType, optional.cmd, position); position += 1; }); } catch (err) { console.warn(err.stack); } } function guessType(arg) { if (Array.isArray(arg)) { return 'array'; } else if (arg === null) { return 'null'; } return typeof arg; } function argumentTypeError(observedType, allowedTypes, position) { throw new YError(`Invalid ${positionName[position] || 'manyith'} argument. Expected ${allowedTypes.join(' or ')} but received ${observedType}.`); }