Server IP : 92.205.26.207 / Your IP : 216.73.216.16 Web Server : Apache System : Linux 207.26.205.92.host.secureserver.net 4.18.0-553.60.1.el8_10.x86_64 #1 SMP Thu Jul 10 04:01:16 EDT 2025 x86_64 User : zikryat ( 1002) PHP Version : 8.3.23 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/zikryat/public_html/node_modules/function-bind/../yargs-parser/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
// Main entrypoint for ESM web browser environments. Avoids using Node.js // specific libraries, such as "path". // // TODO: figure out reasonable web equivalents for "resolve", "normalize", etc. import { camelCase, decamelize, looksLikeNumber } from './build/lib/string-utils.js' import { YargsParser } from './build/lib/yargs-parser.js' const parser = new YargsParser({ cwd: () => { return '' }, format: (str, arg) => { return str.replace('%s', arg) }, normalize: (str) => { return str }, resolve: (str) => { return str }, require: () => { throw Error('loading config from files not currently supported in browser') }, env: () => {} }) const yargsParser = function Parser (args, opts) { const result = parser.parse(args.slice(), opts) return result.argv } yargsParser.detailed = function (args, opts) { return parser.parse(args.slice(), opts) } yargsParser.camelCase = camelCase yargsParser.decamelize = decamelize yargsParser.looksLikeNumber = looksLikeNumber export default yargsParser