Lines 19-59javascript
19 for (let key of __getOwnPropNames(from))
20 if (!__hasOwnProp.call(to, key) && key !== except)
21 __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
25var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
26 // If the importer is in node compatibility mode or this is not an ESM
27 // file that has been converted to a CommonJS file using a Babel-
28 // compatible transform (i.e. "__esModule" has not been set), then set
29 // "default" to the CommonJS "module.exports" for node compatibility.
30 isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
34// ../../node_modules/commander/lib/error.js
35var require_error = __commonJS({
36 "../../node_modules/commander/lib/error.js"(exports) {
37 var CommanderError2 = class extends Error {
39 * Constructs the CommanderError class
40 * @param {number} exitCode suggested exit code which could be used with process.exit
41 * @param {string} code an id string representing the error
HighSandbox Evasion Gated Capability
Source gates dangerous network, credential, or execution behavior behind CI, host, platform, time, or geo fingerprint checks.
dist/index.jsView on unpkg · L39 MediumInstall Persistence
Source writes installer persistence such as shell profile or service configuration.
dist/index.jsView on unpkg · L39 42 * @param {string} message human-readable description of the error
44 constructor(exitCode, code, message) {
46 Error.captureStackTrace(this, this.constructor);
47 this.name = this.constructor.name;
49 this.exitCode = exitCode;
50 this.nestedError = void 0;
53 var InvalidArgumentError2 = class extends CommanderError2 {
55 * Constructs the InvalidArgumentError class
56 * @param {string} [message] explanation of why argument is invalid
58 constructor(message) {
59 super(1, "commander.invalidArgument", message);