Lines 19-59javascript
19 if (!__hasOwnProp.call(to, key) && key !== except)
20 __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
24var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
25 // If the importer is in node compatibility mode or this is not an ESM
26 // file that has been converted to a CommonJS file using a Babel-
27 // compatible transform (i.e. "__esModule" has not been set), then set
28 // "default" to the CommonJS "module.exports" for node compatibility.
29 isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
33// node_modules/commander/lib/error.js
34var require_error = __commonJS({
35 "node_modules/commander/lib/error.js"(exports2) {
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
HighCross File Remote Execution Context
Source spawns a local helper that also contains network and dynamic execution context; review data flow before blocking.
dist/main.cjsView 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);