@stablyai/playwright-test 2.1.12 → 2.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{index-EhzPL0ML.cjs → index-CdLJi9uc.cjs} +855 -820
- package/dist/index-CdLJi9uc.cjs.map +1 -0
- package/dist/{index-cF7EDVHb.mjs → index-D8lS6VkX.mjs} +851 -816
- package/dist/index-D8lS6VkX.mjs.map +1 -0
- package/dist/index.cjs +5 -5
- package/dist/{index.d-Cbdkyfd5.d.cts → index.d-CBqVmz24.d.cts} +6 -1
- package/dist/{index.d-Cbdkyfd5.d.cts.map → index.d-CBqVmz24.d.cts.map} +1 -1
- package/dist/{index.d-Cbdkyfd5.d.ts → index.d-CBqVmz24.d.mts} +6 -1
- package/dist/{index.d-Cbdkyfd5.d.mts.map → index.d-CBqVmz24.d.mts.map} +1 -1
- package/dist/{index.d-Cbdkyfd5.d.mts → index.d-CBqVmz24.d.ts} +6 -1
- package/dist/{index.d-Cbdkyfd5.d.ts.map → index.d-CBqVmz24.d.ts.map} +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.mts.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/reporter.cjs +1 -1
- package/dist/reporter.d.cts +1 -1
- package/dist/reporter.d.mts +1 -1
- package/dist/reporter.mjs +1 -1
- package/package.json +3 -3
- package/dist/index-EhzPL0ML.cjs.map +0 -1
- package/dist/index-cF7EDVHb.mjs.map +0 -1
|
@@ -3,8 +3,8 @@ import path from 'node:path';
|
|
|
3
3
|
import childProcess from 'node:child_process';
|
|
4
4
|
import y, { stdout, stdin } from 'node:process';
|
|
5
5
|
import require$$0$2, { spawnSync, execSync } from 'child_process';
|
|
6
|
-
import
|
|
7
|
-
import
|
|
6
|
+
import Vt from 'path';
|
|
7
|
+
import Wt, { mkdirSync, writeFileSync, openSync, closeSync, readFileSync as readFileSync$1 } from 'fs';
|
|
8
8
|
import { fileURLToPath } from 'node:url';
|
|
9
9
|
import { constants as constants$1 } from 'node:os';
|
|
10
10
|
import { readFileSync, createReadStream } from 'node:fs';
|
|
@@ -170,7 +170,7 @@ function requireWindows() {
|
|
|
170
170
|
hasRequiredWindows = 1;
|
|
171
171
|
windows = isexe;
|
|
172
172
|
isexe.sync = sync;
|
|
173
|
-
var fs =
|
|
173
|
+
var fs = Wt;
|
|
174
174
|
function checkPathExt(path2, options) {
|
|
175
175
|
var pathext = options.pathExt !== void 0 ? options.pathExt : process.env.PATHEXT;
|
|
176
176
|
if (!pathext) {
|
|
@@ -211,7 +211,7 @@ function requireMode() {
|
|
|
211
211
|
hasRequiredMode = 1;
|
|
212
212
|
mode = isexe;
|
|
213
213
|
isexe.sync = sync;
|
|
214
|
-
var fs =
|
|
214
|
+
var fs = Wt;
|
|
215
215
|
function isexe(path2, options, cb) {
|
|
216
216
|
fs.stat(path2, function(er, stat) {
|
|
217
217
|
cb(er, er ? false : checkStat(stat, options));
|
|
@@ -299,7 +299,7 @@ function requireWhich() {
|
|
|
299
299
|
if (hasRequiredWhich) return which_1;
|
|
300
300
|
hasRequiredWhich = 1;
|
|
301
301
|
const isWindows = process.platform === "win32" || process.env.OSTYPE === "cygwin" || process.env.OSTYPE === "msys";
|
|
302
|
-
const path2 =
|
|
302
|
+
const path2 = Vt;
|
|
303
303
|
const COLON = isWindows ? ";" : ":";
|
|
304
304
|
const isexe = requireIsexe();
|
|
305
305
|
const getNotFoundError = (cmd) => Object.assign(new Error(`not found: ${cmd}`), { code: "ENOENT" });
|
|
@@ -412,7 +412,7 @@ var hasRequiredResolveCommand;
|
|
|
412
412
|
function requireResolveCommand() {
|
|
413
413
|
if (hasRequiredResolveCommand) return resolveCommand_1;
|
|
414
414
|
hasRequiredResolveCommand = 1;
|
|
415
|
-
const path2 =
|
|
415
|
+
const path2 = Vt;
|
|
416
416
|
const which = requireWhich();
|
|
417
417
|
const getPathKey = requirePathKey();
|
|
418
418
|
function resolveCommandAttempt(parsed, withoutPathExt) {
|
|
@@ -507,7 +507,7 @@ var hasRequiredReadShebang;
|
|
|
507
507
|
function requireReadShebang() {
|
|
508
508
|
if (hasRequiredReadShebang) return readShebang_1;
|
|
509
509
|
hasRequiredReadShebang = 1;
|
|
510
|
-
const fs =
|
|
510
|
+
const fs = Wt;
|
|
511
511
|
const shebangCommand2 = requireShebangCommand();
|
|
512
512
|
function readShebang(command) {
|
|
513
513
|
const size = 150;
|
|
@@ -529,7 +529,7 @@ var hasRequiredParse;
|
|
|
529
529
|
function requireParse() {
|
|
530
530
|
if (hasRequiredParse) return parse_1;
|
|
531
531
|
hasRequiredParse = 1;
|
|
532
|
-
const path2 =
|
|
532
|
+
const path2 = Vt;
|
|
533
533
|
const resolveCommand = requireResolveCommand();
|
|
534
534
|
const escape = require_escape();
|
|
535
535
|
const readShebang = requireReadShebang();
|
|
@@ -2035,7 +2035,7 @@ function requireDistNode() {
|
|
|
2035
2035
|
value: true
|
|
2036
2036
|
});
|
|
2037
2037
|
distNode.of = distNode.PropertiesFile = void 0;
|
|
2038
|
-
var _fs = _interopRequireDefault(
|
|
2038
|
+
var _fs = _interopRequireDefault(Wt);
|
|
2039
2039
|
function _interopRequireDefault(obj) {
|
|
2040
2040
|
return obj && obj.__esModule ? obj : {
|
|
2041
2041
|
default: obj
|
|
@@ -2584,7 +2584,7 @@ DD();
|
|
|
2584
2584
|
function L$1(e) {
|
|
2585
2585
|
return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e;
|
|
2586
2586
|
}
|
|
2587
|
-
var W$
|
|
2587
|
+
var W$1 = { exports: {} };
|
|
2588
2588
|
(function(e) {
|
|
2589
2589
|
var u = {};
|
|
2590
2590
|
e.exports = u, u.eastAsianWidth = function(F) {
|
|
@@ -2610,8 +2610,8 @@ var W$2 = { exports: {} };
|
|
|
2610
2610
|
}
|
|
2611
2611
|
return D;
|
|
2612
2612
|
};
|
|
2613
|
-
})(W$
|
|
2614
|
-
var tD = W$
|
|
2613
|
+
})(W$1);
|
|
2614
|
+
var tD = W$1.exports;
|
|
2615
2615
|
L$1(tD);
|
|
2616
2616
|
var FD = function() {
|
|
2617
2617
|
return /\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62(?:\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73|\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74|\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67)\uDB40\uDC7F|(?:\uD83E\uDDD1\uD83C\uDFFF\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFE])|(?:\uD83E\uDDD1\uD83C\uDFFE\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFD\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFC\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFB\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFB\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFC-\uDFFF])|\uD83D\uDC68(?:\uD83C\uDFFB(?:\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF]))|\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFC-\uDFFF])|[\u2695\u2696\u2708]\uFE0F|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))?|(?:\uD83C[\uDFFC-\uDFFF])\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF]))|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83D\uDC68|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFE])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])\uFE0F|\u200D(?:(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D[\uDC66\uDC67])|\uD83D[\uDC66\uDC67])|\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC)?|(?:\uD83D\uDC69(?:\uD83C\uDFFB\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|(?:\uD83C[\uDFFC-\uDFFF])\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69]))|\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1)(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC69(?:\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83E\uDDD1(?:\u200D(?:\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D[\uDC66\uDC67])|\uD83D\uDC69\u200D\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D\uDC41\uFE0F\u200D\uD83D\uDDE8|\uD83E\uDDD1(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|\uD83D\uDC69(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|\uD83D\uDE36\u200D\uD83C\uDF2B|\uD83C\uDFF3\uFE0F\u200D\u26A7|\uD83D\uDC3B\u200D\u2744|(?:(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF])\u200D[\u2640\u2642]|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|\uD83C\uDFF4\u200D\u2620|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])\u200D[\u2640\u2642]|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u2600-\u2604\u260E\u2611\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26B0\u26B1\u26C8\u26CF\u26D1\u26D3\u26E9\u26F0\u26F1\u26F4\u26F7\u26F8\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u3030\u303D\u3297\u3299]|\uD83C[\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]|\uD83D[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3])\uFE0F|\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08|\uD83D\uDC69\u200D\uD83D\uDC67|\uD83D\uDC69\u200D\uD83D\uDC66|\uD83D\uDE35\u200D\uD83D\uDCAB|\uD83D\uDE2E\u200D\uD83D\uDCA8|\uD83D\uDC15\u200D\uD83E\uDDBA|\uD83E\uDDD1(?:\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC|\uD83C\uDFFB)?|\uD83D\uDC69(?:\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC|\uD83C\uDFFB)?|\uD83C\uDDFD\uD83C\uDDF0|\uD83C\uDDF6\uD83C\uDDE6|\uD83C\uDDF4\uD83C\uDDF2|\uD83D\uDC08\u200D\u2B1B|\u2764\uFE0F\u200D(?:\uD83D\uDD25|\uD83E\uDE79)|\uD83D\uDC41\uFE0F|\uD83C\uDFF3\uFE0F|\uD83C\uDDFF(?:\uD83C[\uDDE6\uDDF2\uDDFC])|\uD83C\uDDFE(?:\uD83C[\uDDEA\uDDF9])|\uD83C\uDDFC(?:\uD83C[\uDDEB\uDDF8])|\uD83C\uDDFB(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA])|\uD83C\uDDFA(?:\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF])|\uD83C\uDDF9(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF])|\uD83C\uDDF8(?:\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF])|\uD83C\uDDF7(?:\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC])|\uD83C\uDDF5(?:\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE])|\uD83C\uDDF3(?:\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF])|\uD83C\uDDF2(?:\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF])|\uD83C\uDDF1(?:\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE])|\uD83C\uDDF0(?:\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF])|\uD83C\uDDEF(?:\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5])|\uD83C\uDDEE(?:\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9])|\uD83C\uDDED(?:\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA])|\uD83C\uDDEC(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE])|\uD83C\uDDEB(?:\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7])|\uD83C\uDDEA(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA])|\uD83C\uDDE9(?:\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF])|\uD83C\uDDE8(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF])|\uD83C\uDDE7(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF])|\uD83C\uDDE6(?:\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF])|[#\*0-9]\uFE0F\u20E3|\u2764\uFE0F|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])|\uD83C\uDFF4|(?:[\u270A\u270B]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5])(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u261D\u270C\u270D]|\uD83D[\uDD74\uDD90])(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])|[\u270A\u270B]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC08\uDC15\uDC3B\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE2E\uDE35\uDE36\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5]|\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD]|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF]|[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0D\uDD0E\uDD10-\uDD17\uDD1D\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78\uDD7A-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCB\uDDD0\uDDE0-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6]|(?:[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF93\uDFA0-\uDFCA\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF4\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC3E\uDC40\uDC42-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDD7A\uDD95\uDD96\uDDA4\uDDFB-\uDE4F\uDE80-\uDEC5\uDECC\uDED0-\uDED2\uDED5-\uDED7\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0C-\uDD3A\uDD3C-\uDD45\uDD47-\uDD78\uDD7A-\uDDCB\uDDCD-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6])|(?:[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26A7\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299]|\uD83C[\uDC04\uDCCF\uDD70\uDD71\uDD7E\uDD7F\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE02\uDE1A\uDE2F\uDE32-\uDE3A\uDE50\uDE51\uDF00-\uDF21\uDF24-\uDF93\uDF96\uDF97\uDF99-\uDF9B\uDF9E-\uDFF0\uDFF3-\uDFF5\uDFF7-\uDFFF]|\uD83D[\uDC00-\uDCFD\uDCFF-\uDD3D\uDD49-\uDD4E\uDD50-\uDD67\uDD6F\uDD70\uDD73-\uDD7A\uDD87\uDD8A-\uDD8D\uDD90\uDD95\uDD96\uDDA4\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA-\uDE4F\uDE80-\uDEC5\uDECB-\uDED2\uDED5-\uDED7\uDEE0-\uDEE5\uDEE9\uDEEB\uDEEC\uDEF0\uDEF3-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0C-\uDD3A\uDD3C-\uDD45\uDD47-\uDD78\uDD7A-\uDDCB\uDDCD-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6])\uFE0F|(?:[\u261D\u26F9\u270A-\u270D]|\uD83C[\uDF85\uDFC2-\uDFC4\uDFC7\uDFCA-\uDFCC]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66-\uDC78\uDC7C\uDC81-\uDC83\uDC85-\uDC87\uDC8F\uDC91\uDCAA\uDD74\uDD75\uDD7A\uDD90\uDD95\uDD96\uDE45-\uDE47\uDE4B-\uDE4F\uDEA3\uDEB4-\uDEB6\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1F\uDD26\uDD30-\uDD39\uDD3C-\uDD3E\uDD77\uDDB5\uDDB6\uDDB8\uDDB9\uDDBB\uDDCD-\uDDCF\uDDD1-\uDDDD])/g;
|
|
@@ -2652,9 +2652,9 @@ function rD() {
|
|
|
2652
2652
|
}
|
|
2653
2653
|
rD();
|
|
2654
2654
|
const xD = ["up", "down", "left", "right", "space", "enter", "cancel"], B = { actions: new Set(xD), aliases: /* @__PURE__ */ new Map([["k", "up"], ["j", "down"], ["h", "left"], ["l", "right"], ["", "cancel"], ["escape", "cancel"]]) };
|
|
2655
|
-
function
|
|
2655
|
+
function $$1(e, u) {
|
|
2656
2656
|
if (typeof e == "string") return B.aliases.get(e) === u;
|
|
2657
|
-
for (const t of e) if (t !== void 0 &&
|
|
2657
|
+
for (const t of e) if (t !== void 0 && $$1(t, u)) return true;
|
|
2658
2658
|
return false;
|
|
2659
2659
|
}
|
|
2660
2660
|
const AD = globalThis.process.platform.startsWith("win");
|
|
@@ -2663,7 +2663,7 @@ function fD({ input: e = stdin, output: u = stdout, overwrite: t = true, hideCur
|
|
|
2663
2663
|
g.emitKeypressEvents(e, s), e.isTTY && e.setRawMode(true);
|
|
2664
2664
|
const i = (D, { name: C, sequence: n }) => {
|
|
2665
2665
|
const E = String(D);
|
|
2666
|
-
if (
|
|
2666
|
+
if ($$1([E, C, n], "cancel")) {
|
|
2667
2667
|
F && u.write(srcExports.cursor.show), process.exit(0);
|
|
2668
2668
|
return;
|
|
2669
2669
|
}
|
|
@@ -2683,7 +2683,7 @@ function fD({ input: e = stdin, output: u = stdout, overwrite: t = true, hideCur
|
|
|
2683
2683
|
function ce$1() {
|
|
2684
2684
|
return y.platform !== "win32" ? y.env.TERM !== "linux" : !!y.env.CI || !!y.env.WT_SESSION || !!y.env.TERMINUS_SUBLIME || y.env.ConEmuTask === "{cmd::Cmder}" || y.env.TERM_PROGRAM === "Terminus-Sublime" || y.env.TERM_PROGRAM === "vscode" || y.env.TERM === "xterm-256color" || y.env.TERM === "alacritty" || y.env.TERMINAL_EMULATOR === "JetBrains-JediTerm";
|
|
2685
2685
|
}
|
|
2686
|
-
const V = ce$1(), u = (t, n) => V ? t : n, L = u("\u25A0", "x"), W
|
|
2686
|
+
const V$1 = ce$1(), u = (t, n) => V$1 ? t : n, L = u("\u25A0", "x"), W = u("\u25B2", "x"), C = u("\u25C7", "o"), ue$1 = u("\u250C", "T"), o = u("\u2502", "|"), d = u("\u2514", "\u2014"), Ie$1 = (t = "") => {
|
|
2687
2687
|
process.stdout.write(`${it.gray(ue$1)} ${t}
|
|
2688
2688
|
`);
|
|
2689
2689
|
}, Se$1 = (t = "") => {
|
|
@@ -2692,7 +2692,7 @@ ${it.gray(d)} ${t}
|
|
|
2692
2692
|
|
|
2693
2693
|
`);
|
|
2694
2694
|
}; `${it.gray(o)} `; const Y = ({ indicator: t = "dots" } = {}) => {
|
|
2695
|
-
const n = V ? ["\u25D2", "\u25D0", "\u25D3", "\u25D1"] : ["\u2022", "o", "O", "0"], r = V ? 80 : 120, i = process.env.CI === "true";
|
|
2695
|
+
const n = V$1 ? ["\u25D2", "\u25D0", "\u25D3", "\u25D1"] : ["\u2022", "o", "O", "0"], r = V$1 ? 80 : 120, i = process.env.CI === "true";
|
|
2696
2696
|
let s, c, a = false, l = "", $, g = performance.now();
|
|
2697
2697
|
const p = (m) => {
|
|
2698
2698
|
const h = m > 1 ? "Something went wrong" : "Canceled";
|
|
@@ -2729,7 +2729,7 @@ ${it.gray(d)} ${t}
|
|
|
2729
2729
|
}, r);
|
|
2730
2730
|
}, N = (m = "", h = 0) => {
|
|
2731
2731
|
a = false, clearInterval(c), B();
|
|
2732
|
-
const w = h === 0 ? it.green(C) : h === 1 ? it.red(L) : it.red(W
|
|
2732
|
+
const w = h === 0 ? it.green(C) : h === 1 ? it.red(L) : it.red(W);
|
|
2733
2733
|
l = R(m ?? l), t === "timer" ? process.stdout.write(`${w} ${l} ${O(g)}
|
|
2734
2734
|
`) : process.stdout.write(`${w} ${l}
|
|
2735
2735
|
`), E(), s();
|
|
@@ -6709,26 +6709,26 @@ function requirePRetry () {
|
|
|
6709
6709
|
}
|
|
6710
6710
|
|
|
6711
6711
|
var pRetryExports = requirePRetry();
|
|
6712
|
-
var
|
|
6712
|
+
var Kn = /*@__PURE__*/getDefaultExportFromCjs(pRetryExports);
|
|
6713
6713
|
|
|
6714
|
-
var
|
|
6715
|
-
var c = (t, e) =>
|
|
6714
|
+
var Cn = Object.defineProperty;
|
|
6715
|
+
var c = (t, e) => Cn(t, "name", { value: e, configurable: true });
|
|
6716
6716
|
const re = BigInt(2 ** 32 - 1), pr = BigInt(32);
|
|
6717
6717
|
function Yn(t, e = false) {
|
|
6718
6718
|
return e ? { h: Number(t & re), l: Number(t >> pr & re) } : { h: Number(t >> pr & re) | 0, l: Number(t & re) | 0 };
|
|
6719
6719
|
}
|
|
6720
6720
|
c(Yn, "fromBig");
|
|
6721
|
-
function
|
|
6721
|
+
function Qn(t, e = false) {
|
|
6722
6722
|
const r = t.length;
|
|
6723
6723
|
let n = new Uint32Array(r), i = new Uint32Array(r);
|
|
6724
6724
|
for (let s = 0; s < r; s++) {
|
|
6725
|
-
const { h: a, l } = Yn(t[s], e);
|
|
6726
|
-
[n[s], i[s]] = [a,
|
|
6725
|
+
const { h: a, l: u } = Yn(t[s], e);
|
|
6726
|
+
[n[s], i[s]] = [a, u];
|
|
6727
6727
|
}
|
|
6728
6728
|
return [n, i];
|
|
6729
6729
|
}
|
|
6730
|
-
c(
|
|
6731
|
-
const
|
|
6730
|
+
c(Qn, "split");
|
|
6731
|
+
const Jn = c((t, e, r) => t << r | e >>> 32 - r, "rotlSH"), zn = c((t, e, r) => e << r | t >>> 32 - r, "rotlSL"), Xn = c((t, e, r) => e << r - 32 | t >>> 64 - r, "rotlBH"), Zn = c((t, e, r) => t << r - 32 | e >>> 64 - r, "rotlBL");
|
|
6732
6732
|
/*! noble-hashes - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
6733
6733
|
function ti(t) {
|
|
6734
6734
|
return t instanceof Uint8Array || ArrayBuffer.isView(t) && t.constructor.name === "Uint8Array";
|
|
@@ -6744,8 +6744,8 @@ c(mr, "anumber");
|
|
|
6744
6744
|
function Ie(t, e, r = "") {
|
|
6745
6745
|
const n = ti(t), i = t?.length;
|
|
6746
6746
|
if (!n || e !== void 0) {
|
|
6747
|
-
const a = r && `"${r}" `,
|
|
6748
|
-
throw new Error(a + "expected Uint8Array" +
|
|
6747
|
+
const a = r && `"${r}" `, u = "", h = n ? `length=${i}` : `type=${typeof t}`;
|
|
6748
|
+
throw new Error(a + "expected Uint8Array" + u + ", got " + h);
|
|
6749
6749
|
}
|
|
6750
6750
|
return t;
|
|
6751
6751
|
}
|
|
@@ -6785,30 +6785,30 @@ function oi(t, e = {}) {
|
|
|
6785
6785
|
return r.outputLen = n.outputLen, r.blockLen = n.blockLen, r.create = (i) => t(i), Object.assign(r, e), Object.freeze(r);
|
|
6786
6786
|
}
|
|
6787
6787
|
c(oi, "createHasher");
|
|
6788
|
-
const ai = c((t) => ({ oid: Uint8Array.from([6, 9, 96, 134, 72, 1, 101, 3, 4, 2, t]) }), "oidNist"), ci = BigInt(0),
|
|
6789
|
-
for (let t = 0, e =
|
|
6788
|
+
const ai = c((t) => ({ oid: Uint8Array.from([6, 9, 96, 134, 72, 1, 101, 3, 4, 2, t]) }), "oidNist"), ci = BigInt(0), Kt = BigInt(1), li = BigInt(2), ui = BigInt(7), fi = BigInt(256), hi = BigInt(113), Ir = [], Sr = [], Rr = [];
|
|
6789
|
+
for (let t = 0, e = Kt, r = 1, n = 0; t < 24; t++) {
|
|
6790
6790
|
[r, n] = [n, (2 * r + 3 * n) % 5], Ir.push(2 * (5 * n + r)), Sr.push((t + 1) * (t + 2) / 2 % 64);
|
|
6791
6791
|
let i = ci;
|
|
6792
|
-
for (let s = 0; s < 7; s++) e = (e <<
|
|
6792
|
+
for (let s = 0; s < 7; s++) e = (e << Kt ^ (e >> ui) * hi) % fi, e & li && (i ^= Kt << (Kt << BigInt(s)) - Kt);
|
|
6793
6793
|
Rr.push(i);
|
|
6794
6794
|
}
|
|
6795
|
-
const Tr =
|
|
6795
|
+
const Tr = Qn(Rr, true), di = Tr[0], pi = Tr[1], wr = c((t, e, r) => r > 32 ? Xn(t, e, r) : Jn(t, e, r), "rotlH"), Ar = c((t, e, r) => r > 32 ? Zn(t, e, r) : zn(t, e, r), "rotlL");
|
|
6796
6796
|
function mi(t, e = 24) {
|
|
6797
6797
|
const r = new Uint32Array(10);
|
|
6798
6798
|
for (let n = 24 - e; n < 24; n++) {
|
|
6799
6799
|
for (let a = 0; a < 10; a++) r[a] = t[a] ^ t[a + 10] ^ t[a + 20] ^ t[a + 30] ^ t[a + 40];
|
|
6800
6800
|
for (let a = 0; a < 10; a += 2) {
|
|
6801
|
-
const
|
|
6802
|
-
for (let v = 0; v < 50; v += 10) t[a + v] ^= w, t[a + v + 1] ^=
|
|
6801
|
+
const u = (a + 8) % 10, h = (a + 2) % 10, d = r[h], g = r[h + 1], w = wr(d, g, 1) ^ r[u], U = Ar(d, g, 1) ^ r[u + 1];
|
|
6802
|
+
for (let v = 0; v < 50; v += 10) t[a + v] ^= w, t[a + v + 1] ^= U;
|
|
6803
6803
|
}
|
|
6804
6804
|
let i = t[2], s = t[3];
|
|
6805
6805
|
for (let a = 0; a < 24; a++) {
|
|
6806
|
-
const
|
|
6806
|
+
const u = Sr[a], h = wr(i, s, u), d = Ar(i, s, u), g = Ir[a];
|
|
6807
6807
|
i = t[g], s = t[g + 1], t[g] = h, t[g + 1] = d;
|
|
6808
6808
|
}
|
|
6809
6809
|
for (let a = 0; a < 50; a += 10) {
|
|
6810
|
-
for (let
|
|
6811
|
-
for (let
|
|
6810
|
+
for (let u = 0; u < 10; u++) r[u] = t[a + u];
|
|
6811
|
+
for (let u = 0; u < 10; u++) t[a + u] ^= ~r[(u + 2) % 10] & r[(u + 4) % 10];
|
|
6812
6812
|
}
|
|
6813
6813
|
t[0] ^= di[n], t[1] ^= pi[n];
|
|
6814
6814
|
}
|
|
@@ -6845,7 +6845,7 @@ class or {
|
|
|
6845
6845
|
const { blockLen: r, state: n } = this, i = e.length;
|
|
6846
6846
|
for (let s = 0; s < i; ) {
|
|
6847
6847
|
const a = Math.min(r - this.pos, i - s);
|
|
6848
|
-
for (let
|
|
6848
|
+
for (let u = 0; u < a; u++) n[this.pos++] ^= e[s++];
|
|
6849
6849
|
this.pos === r && this.keccak();
|
|
6850
6850
|
}
|
|
6851
6851
|
return this;
|
|
@@ -6889,13 +6889,13 @@ class or {
|
|
|
6889
6889
|
}
|
|
6890
6890
|
}
|
|
6891
6891
|
const gi = c((t, e, r, n = {}) => oi(() => new or(e, t, r), n), "genKeccak"), Ei = gi(6, 72, 64, ai(10));
|
|
6892
|
-
var _i = /^-?(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?$/i, Se = Math.ceil,
|
|
6893
|
-
function
|
|
6894
|
-
var e, r, n, i = A.prototype = { constructor: A, toString: null, valueOf: null }, s = new A(1), a = 20,
|
|
6895
|
-
function A(o,
|
|
6892
|
+
var _i = /^-?(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?$/i, Se = Math.ceil, lt = Math.floor, st = "[BigNumber Error] ", br = st + "Number primitive has more than 15 significant digits: ", pt = 1e14, $ = 14, Re = 9007199254740991, Te = [1, 10, 100, 1e3, 1e4, 1e5, 1e6, 1e7, 1e8, 1e9, 1e10, 1e11, 1e12, 1e13], vt = 1e7, tt = 1e9;
|
|
6893
|
+
function yr(t) {
|
|
6894
|
+
var e, r, n, i = A.prototype = { constructor: A, toString: null, valueOf: null }, s = new A(1), a = 20, u = 4, h = -7, d = 21, g = -1e7, w = 1e7, U = false, v = 1, D = 0, M = { prefix: "", groupSize: 3, secondaryGroupSize: 0, groupSeparator: ",", decimalSeparator: ".", fractionGroupSize: 0, fractionGroupSeparator: "\xA0", suffix: "" }, y = "0123456789abcdefghijklmnopqrstuvwxyz", P = true;
|
|
6895
|
+
function A(o, l) {
|
|
6896
6896
|
var f, _, m, I, T, p, E, S, R = this;
|
|
6897
|
-
if (!(R instanceof A)) return new A(o,
|
|
6898
|
-
if (
|
|
6897
|
+
if (!(R instanceof A)) return new A(o, l);
|
|
6898
|
+
if (l == null) {
|
|
6899
6899
|
if (o && o._isBigNumber === true) {
|
|
6900
6900
|
R.s = o.s, !o.c || o.e > w ? R.c = R.e = null : o.e < g ? R.c = [R.e = 0] : (R.e = o.e, R.c = o.c.slice());
|
|
6901
6901
|
return;
|
|
@@ -6913,12 +6913,12 @@ function br(t) {
|
|
|
6913
6913
|
}
|
|
6914
6914
|
(I = S.indexOf(".")) > -1 && (S = S.replace(".", "")), (T = S.search(/e/i)) > 0 ? (I < 0 && (I = T), I += +S.slice(T + 1), S = S.substring(0, T)) : I < 0 && (I = S.length);
|
|
6915
6915
|
} else {
|
|
6916
|
-
if (
|
|
6916
|
+
if (Q(l, 2, y.length, "Base"), l == 10 && P) return R = new A(o), H(R, a + R.e + 1, u);
|
|
6917
6917
|
if (S = String(o), p = typeof o == "number") {
|
|
6918
|
-
if (o * 0 != 0) return n(R, S, p,
|
|
6919
|
-
if (R.s = 1 / o < 0 ? (S = S.slice(1), -1) : 1, A.DEBUG && S.replace(/^0\.0*|\./, "").length > 15) throw Error(
|
|
6918
|
+
if (o * 0 != 0) return n(R, S, p, l);
|
|
6919
|
+
if (R.s = 1 / o < 0 ? (S = S.slice(1), -1) : 1, A.DEBUG && S.replace(/^0\.0*|\./, "").length > 15) throw Error(br + o);
|
|
6920
6920
|
} else R.s = S.charCodeAt(0) === 45 ? (S = S.slice(1), -1) : 1;
|
|
6921
|
-
for (f =
|
|
6921
|
+
for (f = y.slice(0, l), I = T = 0, E = S.length; T < E; T++) if (f.indexOf(_ = S.charAt(T)) < 0) {
|
|
6922
6922
|
if (_ == ".") {
|
|
6923
6923
|
if (T > I) {
|
|
6924
6924
|
I = E;
|
|
@@ -6928,54 +6928,54 @@ function br(t) {
|
|
|
6928
6928
|
m = true, T = -1, I = 0;
|
|
6929
6929
|
continue;
|
|
6930
6930
|
}
|
|
6931
|
-
return n(R, String(o), p,
|
|
6931
|
+
return n(R, String(o), p, l);
|
|
6932
6932
|
}
|
|
6933
|
-
p = false, S = r(S,
|
|
6933
|
+
p = false, S = r(S, l, 10, R.s), (I = S.indexOf(".")) > -1 ? S = S.replace(".", "") : I = S.length;
|
|
6934
6934
|
}
|
|
6935
6935
|
for (T = 0; S.charCodeAt(T) === 48; T++) ;
|
|
6936
6936
|
for (E = S.length; S.charCodeAt(--E) === 48; ) ;
|
|
6937
6937
|
if (S = S.slice(T, ++E)) {
|
|
6938
|
-
if (E -= T, p && A.DEBUG && E > 15 && (o > Re || o !==
|
|
6938
|
+
if (E -= T, p && A.DEBUG && E > 15 && (o > Re || o !== lt(o))) throw Error(br + R.s * o);
|
|
6939
6939
|
if ((I = I - T - 1) > w) R.c = R.e = null;
|
|
6940
6940
|
else if (I < g) R.c = [R.e = 0];
|
|
6941
6941
|
else {
|
|
6942
|
-
if (R.e = I, R.c = [], T = (I + 1) %
|
|
6943
|
-
for (T && R.c.push(+S.slice(0, T)), E -=
|
|
6944
|
-
T =
|
|
6942
|
+
if (R.e = I, R.c = [], T = (I + 1) % $, I < 0 && (T += $), T < E) {
|
|
6943
|
+
for (T && R.c.push(+S.slice(0, T)), E -= $; T < E; ) R.c.push(+S.slice(T, T += $));
|
|
6944
|
+
T = $ - (S = S.slice(T)).length;
|
|
6945
6945
|
} else T -= E;
|
|
6946
6946
|
for (; T--; S += "0") ;
|
|
6947
6947
|
R.c.push(+S);
|
|
6948
6948
|
}
|
|
6949
6949
|
} else R.c = [R.e = 0];
|
|
6950
6950
|
}
|
|
6951
|
-
c(A, "BigNumber2"), A.clone =
|
|
6952
|
-
var
|
|
6951
|
+
c(A, "BigNumber2"), A.clone = yr, A.ROUND_UP = 0, A.ROUND_DOWN = 1, A.ROUND_CEIL = 2, A.ROUND_FLOOR = 3, A.ROUND_HALF_UP = 4, A.ROUND_HALF_DOWN = 5, A.ROUND_HALF_EVEN = 6, A.ROUND_HALF_CEIL = 7, A.ROUND_HALF_FLOOR = 8, A.EUCLID = 9, A.config = A.set = function(o) {
|
|
6952
|
+
var l, f;
|
|
6953
6953
|
if (o != null) if (typeof o == "object") {
|
|
6954
|
-
if (o.hasOwnProperty(
|
|
6955
|
-
else if (
|
|
6956
|
-
else throw Error(st +
|
|
6957
|
-
if (o.hasOwnProperty(
|
|
6958
|
-
else throw
|
|
6959
|
-
else
|
|
6960
|
-
else throw Error(st +
|
|
6961
|
-
if (o.hasOwnProperty(
|
|
6962
|
-
else throw Error(st +
|
|
6963
|
-
if (o.hasOwnProperty(
|
|
6964
|
-
else throw Error(st +
|
|
6954
|
+
if (o.hasOwnProperty(l = "DECIMAL_PLACES") && (f = o[l], Q(f, 0, tt, l), a = f), o.hasOwnProperty(l = "ROUNDING_MODE") && (f = o[l], Q(f, 0, 8, l), u = f), o.hasOwnProperty(l = "EXPONENTIAL_AT") && (f = o[l], f && f.pop ? (Q(f[0], -tt, 0, l), Q(f[1], 0, tt, l), h = f[0], d = f[1]) : (Q(f, -tt, tt, l), h = -(d = f < 0 ? -f : f))), o.hasOwnProperty(l = "RANGE")) if (f = o[l], f && f.pop) Q(f[0], -tt, -1, l), Q(f[1], 1, tt, l), g = f[0], w = f[1];
|
|
6955
|
+
else if (Q(f, -tt, tt, l), f) g = -(w = f < 0 ? -f : f);
|
|
6956
|
+
else throw Error(st + l + " cannot be zero: " + f);
|
|
6957
|
+
if (o.hasOwnProperty(l = "CRYPTO")) if (f = o[l], f === !!f) if (f) if (typeof crypto < "u" && crypto && (crypto.getRandomValues || crypto.randomBytes)) U = f;
|
|
6958
|
+
else throw U = !f, Error(st + "crypto unavailable");
|
|
6959
|
+
else U = f;
|
|
6960
|
+
else throw Error(st + l + " not true or false: " + f);
|
|
6961
|
+
if (o.hasOwnProperty(l = "MODULO_MODE") && (f = o[l], Q(f, 0, 9, l), v = f), o.hasOwnProperty(l = "POW_PRECISION") && (f = o[l], Q(f, 0, tt, l), D = f), o.hasOwnProperty(l = "FORMAT")) if (f = o[l], typeof f == "object") M = f;
|
|
6962
|
+
else throw Error(st + l + " not an object: " + f);
|
|
6963
|
+
if (o.hasOwnProperty(l = "ALPHABET")) if (f = o[l], typeof f == "string" && !/^.?$|[+\-.\s]|(.).*\1/.test(f)) P = f.slice(0, 10) == "0123456789", y = f;
|
|
6964
|
+
else throw Error(st + l + " invalid: " + f);
|
|
6965
6965
|
} else throw Error(st + "Object expected: " + o);
|
|
6966
|
-
return { DECIMAL_PLACES: a, ROUNDING_MODE:
|
|
6966
|
+
return { DECIMAL_PLACES: a, ROUNDING_MODE: u, EXPONENTIAL_AT: [h, d], RANGE: [g, w], CRYPTO: U, MODULO_MODE: v, POW_PRECISION: D, FORMAT: M, ALPHABET: y };
|
|
6967
6967
|
}, A.isBigNumber = function(o) {
|
|
6968
6968
|
if (!o || o._isBigNumber !== true) return false;
|
|
6969
6969
|
if (!A.DEBUG) return true;
|
|
6970
|
-
var
|
|
6970
|
+
var l, f, _ = o.c, m = o.e, I = o.s;
|
|
6971
6971
|
t: if ({}.toString.call(_) == "[object Array]") {
|
|
6972
|
-
if ((I === 1 || I === -1) && m >= -tt && m <= tt && m ===
|
|
6972
|
+
if ((I === 1 || I === -1) && m >= -tt && m <= tt && m === lt(m)) {
|
|
6973
6973
|
if (_[0] === 0) {
|
|
6974
6974
|
if (m === 0 && _.length === 1) return true;
|
|
6975
6975
|
break t;
|
|
6976
6976
|
}
|
|
6977
|
-
if (
|
|
6978
|
-
for (
|
|
6977
|
+
if (l = (m + 1) % $, l < 1 && (l += $), String(_[0]).length == l) {
|
|
6978
|
+
for (l = 0; l < _.length; l++) if (f = _[l], f < 0 || f >= pt || f !== lt(f)) break t;
|
|
6979
6979
|
if (f !== 0) return true;
|
|
6980
6980
|
}
|
|
6981
6981
|
}
|
|
@@ -6986,49 +6986,49 @@ function br(t) {
|
|
|
6986
6986
|
}, A.minimum = A.min = function() {
|
|
6987
6987
|
return x(arguments, 1);
|
|
6988
6988
|
}, A.random = (function() {
|
|
6989
|
-
var o = 9007199254740992,
|
|
6990
|
-
return
|
|
6989
|
+
var o = 9007199254740992, l = Math.random() * o & 2097151 ? function() {
|
|
6990
|
+
return lt(Math.random() * o);
|
|
6991
6991
|
} : function() {
|
|
6992
6992
|
return (Math.random() * 1073741824 | 0) * 8388608 + (Math.random() * 8388608 | 0);
|
|
6993
6993
|
};
|
|
6994
6994
|
return function(f) {
|
|
6995
6995
|
var _, m, I, T, p, E = 0, S = [], R = new A(s);
|
|
6996
|
-
if (f == null ? f = a :
|
|
6996
|
+
if (f == null ? f = a : Q(f, 0, tt), T = Se(f / $), U) if (crypto.getRandomValues) {
|
|
6997
6997
|
for (_ = crypto.getRandomValues(new Uint32Array(T *= 2)); E < T; ) p = _[E] * 131072 + (_[E + 1] >>> 11), p >= 9e15 ? (m = crypto.getRandomValues(new Uint32Array(2)), _[E] = m[0], _[E + 1] = m[1]) : (S.push(p % 1e14), E += 2);
|
|
6998
6998
|
E = T / 2;
|
|
6999
6999
|
} else if (crypto.randomBytes) {
|
|
7000
7000
|
for (_ = crypto.randomBytes(T *= 7); E < T; ) p = (_[E] & 31) * 281474976710656 + _[E + 1] * 1099511627776 + _[E + 2] * 4294967296 + _[E + 3] * 16777216 + (_[E + 4] << 16) + (_[E + 5] << 8) + _[E + 6], p >= 9e15 ? crypto.randomBytes(7).copy(_, E) : (S.push(p % 1e14), E += 7);
|
|
7001
7001
|
E = T / 7;
|
|
7002
|
-
} else throw
|
|
7003
|
-
if (!
|
|
7004
|
-
for (T = S[--E], f %=
|
|
7002
|
+
} else throw U = false, Error(st + "crypto unavailable");
|
|
7003
|
+
if (!U) for (; E < T; ) p = l(), p < 9e15 && (S[E++] = p % 1e14);
|
|
7004
|
+
for (T = S[--E], f %= $, T && f && (p = Te[$ - f], S[E] = lt(T / p) * p); S[E] === 0; S.pop(), E--) ;
|
|
7005
7005
|
if (E < 0) S = [I = 0];
|
|
7006
7006
|
else {
|
|
7007
|
-
for (I = -1; S[0] === 0; S.splice(0, 1), I -=
|
|
7007
|
+
for (I = -1; S[0] === 0; S.splice(0, 1), I -= $) ;
|
|
7008
7008
|
for (E = 1, p = S[0]; p >= 10; p /= 10, E++) ;
|
|
7009
|
-
E <
|
|
7009
|
+
E < $ && (I -= $ - E);
|
|
7010
7010
|
}
|
|
7011
7011
|
return R.e = I, R.c = S, R;
|
|
7012
7012
|
};
|
|
7013
7013
|
})(), A.sum = function() {
|
|
7014
|
-
for (var o = 1,
|
|
7014
|
+
for (var o = 1, l = arguments, f = new A(l[0]); o < l.length; ) f = f.plus(l[o++]);
|
|
7015
7015
|
return f;
|
|
7016
7016
|
}, r = (function() {
|
|
7017
7017
|
var o = "0123456789";
|
|
7018
|
-
function
|
|
7018
|
+
function l(f, _, m, I) {
|
|
7019
7019
|
for (var T, p = [0], E, S = 0, R = f.length; S < R; ) {
|
|
7020
7020
|
for (E = p.length; E--; p[E] *= _) ;
|
|
7021
7021
|
for (p[0] += I.indexOf(f.charAt(S++)), T = 0; T < p.length; T++) p[T] > m - 1 && (p[T + 1] == null && (p[T + 1] = 0), p[T + 1] += p[T] / m | 0, p[T] %= m);
|
|
7022
7022
|
}
|
|
7023
7023
|
return p.reverse();
|
|
7024
7024
|
}
|
|
7025
|
-
return c(
|
|
7026
|
-
var p, E, S, R,
|
|
7027
|
-
for (F >= 0 && (R =
|
|
7025
|
+
return c(l, "toBaseOut"), function(f, _, m, I, T) {
|
|
7026
|
+
var p, E, S, R, b, O, B, G, F = f.indexOf("."), W = a, N = u;
|
|
7027
|
+
for (F >= 0 && (R = D, D = 0, f = f.replace(".", ""), G = new A(_), O = G.pow(f.length - F), D = R, G.c = l(wt(ft(O.c), O.e, "0"), 10, m, o), G.e = G.c.length), B = l(f, _, m, T ? (p = y, o) : (p = o, y)), S = R = B.length; B[--R] == 0; B.pop()) ;
|
|
7028
7028
|
if (!B[0]) return p.charAt(0);
|
|
7029
|
-
if (F < 0 ? --S : (
|
|
7029
|
+
if (F < 0 ? --S : (O.c = B, O.e = S, O.s = I, O = e(O, G, W, N, m), B = O.c, b = O.r, S = O.e), E = S + W + 1, F = B[E], R = m / 2, b = b || E < 0 || B[E + 1] != null, b = N < 4 ? (F != null || b) && (N == 0 || N == (O.s < 0 ? 3 : 2)) : F > R || F == R && (N == 4 || b || N == 6 && B[E - 1] & 1 || N == (O.s < 0 ? 8 : 7)), E < 1 || !B[0]) f = b ? wt(p.charAt(1), -W, p.charAt(0)) : p.charAt(0);
|
|
7030
7030
|
else {
|
|
7031
|
-
if (B.length = E,
|
|
7031
|
+
if (B.length = E, b) for (--m; ++B[--E] > m; ) B[E] = 0, E || (++S, B = [1].concat(B));
|
|
7032
7032
|
for (R = B.length; !B[--R]; ) ;
|
|
7033
7033
|
for (F = 0, f = ""; F <= R; f += p.charAt(B[F++])) ;
|
|
7034
7034
|
f = wt(f, S, p.charAt(0));
|
|
@@ -7037,12 +7037,12 @@ function br(t) {
|
|
|
7037
7037
|
};
|
|
7038
7038
|
})(), e = (function() {
|
|
7039
7039
|
function o(_, m, I) {
|
|
7040
|
-
var T, p, E, S, R = 0,
|
|
7041
|
-
for (_ = _.slice();
|
|
7040
|
+
var T, p, E, S, R = 0, b = _.length, O = m % vt, B = m / vt | 0;
|
|
7041
|
+
for (_ = _.slice(); b--; ) E = _[b] % vt, S = _[b] / vt | 0, T = B * E + S * O, p = O * E + T % vt * vt + R, R = (p / I | 0) + (T / vt | 0) + B * S, _[b] = p % I;
|
|
7042
7042
|
return R && (_ = [R].concat(_)), _;
|
|
7043
7043
|
}
|
|
7044
7044
|
c(o, "multiply");
|
|
7045
|
-
function
|
|
7045
|
+
function l(_, m, I, T) {
|
|
7046
7046
|
var p, E;
|
|
7047
7047
|
if (I != T) E = I > T ? 1 : -1;
|
|
7048
7048
|
else for (p = E = 0; p < I; p++) if (_[p] != m[p]) {
|
|
@@ -7051,99 +7051,99 @@ function br(t) {
|
|
|
7051
7051
|
}
|
|
7052
7052
|
return E;
|
|
7053
7053
|
}
|
|
7054
|
-
c(
|
|
7054
|
+
c(l, "compare2");
|
|
7055
7055
|
function f(_, m, I, T) {
|
|
7056
7056
|
for (var p = 0; I--; ) _[I] -= p, p = _[I] < m[I] ? 1 : 0, _[I] = p * T + _[I] - m[I];
|
|
7057
7057
|
for (; !_[0] && _.length > 1; _.splice(0, 1)) ;
|
|
7058
7058
|
}
|
|
7059
7059
|
return c(f, "subtract"), function(_, m, I, T, p) {
|
|
7060
|
-
var E, S, R,
|
|
7061
|
-
if (!Z || !Z[0] || !
|
|
7062
|
-
for (F = new A(X),
|
|
7063
|
-
if (
|
|
7060
|
+
var E, S, R, b, O, B, G, F, W, N, k, Y, ht, yt, Ut, rt, dt, X = _.s == m.s ? 1 : -1, Z = _.c, J = m.c;
|
|
7061
|
+
if (!Z || !Z[0] || !J || !J[0]) return new A(!_.s || !m.s || (Z ? J && Z[0] == J[0] : !J) ? NaN : Z && Z[0] == 0 || !J ? X * 0 : X / 0);
|
|
7062
|
+
for (F = new A(X), W = F.c = [], S = _.e - m.e, X = I + S + 1, p || (p = pt, S = ut(_.e / $) - ut(m.e / $), X = X / $ | 0), R = 0; J[R] == (Z[R] || 0); R++) ;
|
|
7063
|
+
if (J[R] > (Z[R] || 0) && S--, X < 0) W.push(1), b = true;
|
|
7064
7064
|
else {
|
|
7065
|
-
for (
|
|
7066
|
-
dt =
|
|
7065
|
+
for (yt = Z.length, rt = J.length, R = 0, X += 2, O = lt(p / (J[0] + 1)), O > 1 && (J = o(J, O, p), Z = o(Z, O, p), rt = J.length, yt = Z.length), ht = rt, N = Z.slice(0, rt), k = N.length; k < rt; N[k++] = 0) ;
|
|
7066
|
+
dt = J.slice(), dt = [0].concat(dt), Ut = J[0], J[1] >= p / 2 && Ut++;
|
|
7067
7067
|
do {
|
|
7068
|
-
if (
|
|
7069
|
-
if (Y = N[0], rt != k && (Y = Y * p + (N[1] || 0)),
|
|
7070
|
-
else
|
|
7071
|
-
if (
|
|
7072
|
-
} else E === 0 && (
|
|
7073
|
-
|
|
7074
|
-
} while ((ht++ <
|
|
7075
|
-
|
|
7068
|
+
if (O = 0, E = l(J, N, rt, k), E < 0) {
|
|
7069
|
+
if (Y = N[0], rt != k && (Y = Y * p + (N[1] || 0)), O = lt(Y / Ut), O > 1) for (O >= p && (O = p - 1), B = o(J, O, p), G = B.length, k = N.length; l(B, N, G, k) == 1; ) O--, f(B, rt < G ? dt : J, G, p), G = B.length, E = 1;
|
|
7070
|
+
else O == 0 && (E = O = 1), B = J.slice(), G = B.length;
|
|
7071
|
+
if (G < k && (B = [0].concat(B)), f(N, B, k, p), k = N.length, E == -1) for (; l(J, N, rt, k) < 1; ) O++, f(N, rt < k ? dt : J, k, p), k = N.length;
|
|
7072
|
+
} else E === 0 && (O++, N = [0]);
|
|
7073
|
+
W[R++] = O, N[0] ? N[k++] = Z[ht] || 0 : (N = [Z[ht]], k = 1);
|
|
7074
|
+
} while ((ht++ < yt || N[0] != null) && X--);
|
|
7075
|
+
b = N[0] != null, W[0] || W.splice(0, 1);
|
|
7076
7076
|
}
|
|
7077
7077
|
if (p == pt) {
|
|
7078
|
-
for (R = 1, X =
|
|
7079
|
-
H(F, I + (F.e = R + S *
|
|
7080
|
-
} else F.e = S, F.r = +
|
|
7078
|
+
for (R = 1, X = W[0]; X >= 10; X /= 10, R++) ;
|
|
7079
|
+
H(F, I + (F.e = R + S * $ - 1) + 1, T, b);
|
|
7080
|
+
} else F.e = S, F.r = +b;
|
|
7081
7081
|
return F;
|
|
7082
7082
|
};
|
|
7083
7083
|
})();
|
|
7084
|
-
function
|
|
7084
|
+
function L(o, l, f, _) {
|
|
7085
7085
|
var m, I, T, p, E;
|
|
7086
|
-
if (f == null ? f =
|
|
7087
|
-
if (m = o.c[0], T = o.e,
|
|
7088
|
-
else if (o = H(new A(o),
|
|
7089
|
-
for (; p <
|
|
7086
|
+
if (f == null ? f = u : Q(f, 0, 8), !o.c) return o.toString();
|
|
7087
|
+
if (m = o.c[0], T = o.e, l == null) E = ft(o.c), E = _ == 1 || _ == 2 && (T <= h || T >= d) ? ie(E, T) : wt(E, T, "0");
|
|
7088
|
+
else if (o = H(new A(o), l, f), I = o.e, E = ft(o.c), p = E.length, _ == 1 || _ == 2 && (l <= I || I <= h)) {
|
|
7089
|
+
for (; p < l; E += "0", p++) ;
|
|
7090
7090
|
E = ie(E, I);
|
|
7091
|
-
} else if (
|
|
7092
|
-
if (--
|
|
7093
|
-
} else if (
|
|
7091
|
+
} else if (l -= T + (_ === 2 && I > T), E = wt(E, I, "0"), I + 1 > p) {
|
|
7092
|
+
if (--l > 0) for (E += "."; l--; E += "0") ;
|
|
7093
|
+
} else if (l += I - p, l > 0) for (I + 1 == p && (E += "."); l--; E += "0") ;
|
|
7094
7094
|
return o.s < 0 && m ? "-" + E : E;
|
|
7095
7095
|
}
|
|
7096
|
-
c(
|
|
7097
|
-
function x(o,
|
|
7098
|
-
for (var f, _, m = 1, I = new A(o[0]); m < o.length; m++) _ = new A(o[m]), (!_.s || (f =
|
|
7096
|
+
c(L, "format");
|
|
7097
|
+
function x(o, l) {
|
|
7098
|
+
for (var f, _, m = 1, I = new A(o[0]); m < o.length; m++) _ = new A(o[m]), (!_.s || (f = Mt(I, _)) === l || f === 0 && I.s === l) && (I = _);
|
|
7099
7099
|
return I;
|
|
7100
7100
|
}
|
|
7101
7101
|
c(x, "maxOrMin");
|
|
7102
|
-
function
|
|
7103
|
-
for (var _ = 1, m =
|
|
7104
|
-
for (m =
|
|
7105
|
-
return (f = _ + f *
|
|
7102
|
+
function C(o, l, f) {
|
|
7103
|
+
for (var _ = 1, m = l.length; !l[--m]; l.pop()) ;
|
|
7104
|
+
for (m = l[0]; m >= 10; m /= 10, _++) ;
|
|
7105
|
+
return (f = _ + f * $ - 1) > w ? o.c = o.e = null : f < g ? o.c = [o.e = 0] : (o.e = f, o.c = l), o;
|
|
7106
7106
|
}
|
|
7107
|
-
c(
|
|
7108
|
-
var o = /^(-?)0([xbo])(?=\w[\w.]*$)/i,
|
|
7107
|
+
c(C, "normalise"), n = /* @__PURE__ */ (function() {
|
|
7108
|
+
var o = /^(-?)0([xbo])(?=\w[\w.]*$)/i, l = /^([^.]+)\.$/, f = /^\.([^.]+)$/, _ = /^-?(Infinity|NaN)$/, m = /^\s*\+(?=[\w.])|^\s+|\s+$/g;
|
|
7109
7109
|
return function(I, T, p, E) {
|
|
7110
7110
|
var S, R = p ? T : T.replace(m, "");
|
|
7111
7111
|
if (_.test(R)) I.s = isNaN(R) ? null : R < 0 ? -1 : 1;
|
|
7112
7112
|
else {
|
|
7113
|
-
if (!p && (R = R.replace(o, function(
|
|
7114
|
-
return S = (B = B.toLowerCase()) == "x" ? 16 : B == "b" ? 2 : 8, !E || E == S ?
|
|
7115
|
-
}), E && (S = E, R = R.replace(
|
|
7113
|
+
if (!p && (R = R.replace(o, function(b, O, B) {
|
|
7114
|
+
return S = (B = B.toLowerCase()) == "x" ? 16 : B == "b" ? 2 : 8, !E || E == S ? O : b;
|
|
7115
|
+
}), E && (S = E, R = R.replace(l, "$1").replace(f, "0.$1")), T != R)) return new A(R, S);
|
|
7116
7116
|
if (A.DEBUG) throw Error(st + "Not a" + (E ? " base " + E : "") + " number: " + T);
|
|
7117
7117
|
I.s = null;
|
|
7118
7118
|
}
|
|
7119
7119
|
I.c = I.e = null;
|
|
7120
7120
|
};
|
|
7121
7121
|
})();
|
|
7122
|
-
function H(o,
|
|
7123
|
-
var m, I, T, p, E, S, R,
|
|
7124
|
-
if (
|
|
7122
|
+
function H(o, l, f, _) {
|
|
7123
|
+
var m, I, T, p, E, S, R, b = o.c, O = Te;
|
|
7124
|
+
if (b) {
|
|
7125
7125
|
t: {
|
|
7126
|
-
for (m = 1, p =
|
|
7127
|
-
if (I =
|
|
7128
|
-
else if (S = Se((I + 1) /
|
|
7129
|
-
for (;
|
|
7130
|
-
E = R = 0, m = 1, I %=
|
|
7126
|
+
for (m = 1, p = b[0]; p >= 10; p /= 10, m++) ;
|
|
7127
|
+
if (I = l - m, I < 0) I += $, T = l, E = b[S = 0], R = lt(E / O[m - T - 1] % 10);
|
|
7128
|
+
else if (S = Se((I + 1) / $), S >= b.length) if (_) {
|
|
7129
|
+
for (; b.length <= S; b.push(0)) ;
|
|
7130
|
+
E = R = 0, m = 1, I %= $, T = I - $ + 1;
|
|
7131
7131
|
} else break t;
|
|
7132
7132
|
else {
|
|
7133
|
-
for (E = p =
|
|
7134
|
-
I %=
|
|
7133
|
+
for (E = p = b[S], m = 1; p >= 10; p /= 10, m++) ;
|
|
7134
|
+
I %= $, T = I - $ + m, R = T < 0 ? 0 : lt(E / O[m - T - 1] % 10);
|
|
7135
7135
|
}
|
|
7136
|
-
if (_ = _ ||
|
|
7137
|
-
if (I == 0 ? (
|
|
7138
|
-
for (I = 1, T =
|
|
7139
|
-
for (T =
|
|
7140
|
-
I != p && (o.e++,
|
|
7136
|
+
if (_ = _ || l < 0 || b[S + 1] != null || (T < 0 ? E : E % O[m - T - 1]), _ = f < 4 ? (R || _) && (f == 0 || f == (o.s < 0 ? 3 : 2)) : R > 5 || R == 5 && (f == 4 || _ || f == 6 && (I > 0 ? T > 0 ? E / O[m - T] : 0 : b[S - 1]) % 10 & 1 || f == (o.s < 0 ? 8 : 7)), l < 1 || !b[0]) return b.length = 0, _ ? (l -= o.e + 1, b[0] = O[($ - l % $) % $], o.e = -l || 0) : b[0] = o.e = 0, o;
|
|
7137
|
+
if (I == 0 ? (b.length = S, p = 1, S--) : (b.length = S + 1, p = O[$ - I], b[S] = T > 0 ? lt(E / O[m - T] % O[T]) * p : 0), _) for (; ; ) if (S == 0) {
|
|
7138
|
+
for (I = 1, T = b[0]; T >= 10; T /= 10, I++) ;
|
|
7139
|
+
for (T = b[0] += p, p = 1; T >= 10; T /= 10, p++) ;
|
|
7140
|
+
I != p && (o.e++, b[0] == pt && (b[0] = 1));
|
|
7141
7141
|
break;
|
|
7142
7142
|
} else {
|
|
7143
|
-
if (
|
|
7144
|
-
|
|
7143
|
+
if (b[S] += p, b[S] != pt) break;
|
|
7144
|
+
b[S--] = 0, p = 1;
|
|
7145
7145
|
}
|
|
7146
|
-
for (I =
|
|
7146
|
+
for (I = b.length; b[--I] === 0; b.pop()) ;
|
|
7147
7147
|
}
|
|
7148
7148
|
o.e > w ? o.c = o.e = null : o.e < g && (o.c = [o.e = 0]);
|
|
7149
7149
|
}
|
|
@@ -7151,68 +7151,68 @@ function br(t) {
|
|
|
7151
7151
|
}
|
|
7152
7152
|
c(H, "round");
|
|
7153
7153
|
function j(o) {
|
|
7154
|
-
var
|
|
7155
|
-
return f === null ? o.toString() : (
|
|
7154
|
+
var l, f = o.e;
|
|
7155
|
+
return f === null ? o.toString() : (l = ft(o.c), l = f <= h || f >= d ? ie(l, f) : wt(l, f, "0"), o.s < 0 ? "-" + l : l);
|
|
7156
7156
|
}
|
|
7157
7157
|
return c(j, "valueOf"), i.absoluteValue = i.abs = function() {
|
|
7158
7158
|
var o = new A(this);
|
|
7159
7159
|
return o.s < 0 && (o.s = 1), o;
|
|
7160
|
-
}, i.comparedTo = function(o,
|
|
7161
|
-
return
|
|
7162
|
-
}, i.decimalPlaces = i.dp = function(o,
|
|
7160
|
+
}, i.comparedTo = function(o, l) {
|
|
7161
|
+
return Mt(this, new A(o, l));
|
|
7162
|
+
}, i.decimalPlaces = i.dp = function(o, l) {
|
|
7163
7163
|
var f, _, m, I = this;
|
|
7164
|
-
if (o != null) return
|
|
7164
|
+
if (o != null) return Q(o, 0, tt), l == null ? l = u : Q(l, 0, 8), H(new A(I), o + I.e + 1, l);
|
|
7165
7165
|
if (!(f = I.c)) return null;
|
|
7166
|
-
if (_ = ((m = f.length - 1) -
|
|
7166
|
+
if (_ = ((m = f.length - 1) - ut(this.e / $)) * $, m = f[m]) for (; m % 10 == 0; m /= 10, _--) ;
|
|
7167
7167
|
return _ < 0 && (_ = 0), _;
|
|
7168
|
-
}, i.dividedBy = i.div = function(o,
|
|
7169
|
-
return e(this, new A(o,
|
|
7170
|
-
}, i.dividedToIntegerBy = i.idiv = function(o,
|
|
7171
|
-
return e(this, new A(o,
|
|
7172
|
-
}, i.exponentiatedBy = i.pow = function(o,
|
|
7173
|
-
var f, _, m, I, T, p, E, S, R,
|
|
7168
|
+
}, i.dividedBy = i.div = function(o, l) {
|
|
7169
|
+
return e(this, new A(o, l), a, u);
|
|
7170
|
+
}, i.dividedToIntegerBy = i.idiv = function(o, l) {
|
|
7171
|
+
return e(this, new A(o, l), 0, 1);
|
|
7172
|
+
}, i.exponentiatedBy = i.pow = function(o, l) {
|
|
7173
|
+
var f, _, m, I, T, p, E, S, R, b = this;
|
|
7174
7174
|
if (o = new A(o), o.c && !o.isInteger()) throw Error(st + "Exponent not an integer: " + j(o));
|
|
7175
|
-
if (
|
|
7176
|
-
if (E = o.s < 0,
|
|
7177
|
-
if (
|
|
7178
|
-
_ = !E &&
|
|
7175
|
+
if (l != null && (l = new A(l)), p = o.e > 14, !b.c || !b.c[0] || b.c[0] == 1 && !b.e && b.c.length == 1 || !o.c || !o.c[0]) return R = new A(Math.pow(+j(b), p ? o.s * (2 - ne(o)) : +j(o))), l ? R.mod(l) : R;
|
|
7176
|
+
if (E = o.s < 0, l) {
|
|
7177
|
+
if (l.c ? !l.c[0] : !l.s) return new A(NaN);
|
|
7178
|
+
_ = !E && b.isInteger() && l.isInteger(), _ && (b = b.mod(l));
|
|
7179
7179
|
} else {
|
|
7180
|
-
if (o.e > 9 && (
|
|
7181
|
-
|
|
7180
|
+
if (o.e > 9 && (b.e > 0 || b.e < -1 || (b.e == 0 ? b.c[0] > 1 || p && b.c[1] >= 24e7 : b.c[0] < 8e13 || p && b.c[0] <= 9999975e7))) return I = b.s < 0 && ne(o) ? -0 : 0, b.e > -1 && (I = 1 / I), new A(E ? 1 / I : I);
|
|
7181
|
+
D && (I = Se(D / $ + 2));
|
|
7182
7182
|
}
|
|
7183
7183
|
for (p ? (f = new A(0.5), E && (o.s = 1), S = ne(o)) : (m = Math.abs(+j(o)), S = m % 2), R = new A(s); ; ) {
|
|
7184
7184
|
if (S) {
|
|
7185
|
-
if (R = R.times(
|
|
7186
|
-
I ? R.c.length > I && (R.c.length = I) : _ && (R = R.mod(
|
|
7185
|
+
if (R = R.times(b), !R.c) break;
|
|
7186
|
+
I ? R.c.length > I && (R.c.length = I) : _ && (R = R.mod(l));
|
|
7187
7187
|
}
|
|
7188
7188
|
if (m) {
|
|
7189
|
-
if (m =
|
|
7189
|
+
if (m = lt(m / 2), m === 0) break;
|
|
7190
7190
|
S = m % 2;
|
|
7191
7191
|
} else if (o = o.times(f), H(o, o.e + 1, 1), o.e > 14) S = ne(o);
|
|
7192
7192
|
else {
|
|
7193
7193
|
if (m = +j(o), m === 0) break;
|
|
7194
7194
|
S = m % 2;
|
|
7195
7195
|
}
|
|
7196
|
-
|
|
7196
|
+
b = b.times(b), I ? b.c && b.c.length > I && (b.c.length = I) : _ && (b = b.mod(l));
|
|
7197
7197
|
}
|
|
7198
|
-
return _ ? R : (E && (R = s.div(R)),
|
|
7198
|
+
return _ ? R : (E && (R = s.div(R)), l ? R.mod(l) : I ? H(R, D, u, T) : R);
|
|
7199
7199
|
}, i.integerValue = function(o) {
|
|
7200
|
-
var
|
|
7201
|
-
return o == null ? o =
|
|
7202
|
-
}, i.isEqualTo = i.eq = function(o,
|
|
7203
|
-
return
|
|
7200
|
+
var l = new A(this);
|
|
7201
|
+
return o == null ? o = u : Q(o, 0, 8), H(l, l.e + 1, o);
|
|
7202
|
+
}, i.isEqualTo = i.eq = function(o, l) {
|
|
7203
|
+
return Mt(this, new A(o, l)) === 0;
|
|
7204
7204
|
}, i.isFinite = function() {
|
|
7205
7205
|
return !!this.c;
|
|
7206
|
-
}, i.isGreaterThan = i.gt = function(o,
|
|
7207
|
-
return
|
|
7208
|
-
}, i.isGreaterThanOrEqualTo = i.gte = function(o,
|
|
7209
|
-
return (
|
|
7206
|
+
}, i.isGreaterThan = i.gt = function(o, l) {
|
|
7207
|
+
return Mt(this, new A(o, l)) > 0;
|
|
7208
|
+
}, i.isGreaterThanOrEqualTo = i.gte = function(o, l) {
|
|
7209
|
+
return (l = Mt(this, new A(o, l))) === 1 || l === 0;
|
|
7210
7210
|
}, i.isInteger = function() {
|
|
7211
|
-
return !!this.c &&
|
|
7212
|
-
}, i.isLessThan = i.lt = function(o,
|
|
7213
|
-
return
|
|
7214
|
-
}, i.isLessThanOrEqualTo = i.lte = function(o,
|
|
7215
|
-
return (
|
|
7211
|
+
return !!this.c && ut(this.e / $) > this.c.length - 2;
|
|
7212
|
+
}, i.isLessThan = i.lt = function(o, l) {
|
|
7213
|
+
return Mt(this, new A(o, l)) < 0;
|
|
7214
|
+
}, i.isLessThanOrEqualTo = i.lte = function(o, l) {
|
|
7215
|
+
return (l = Mt(this, new A(o, l))) === -1 || l === 0;
|
|
7216
7216
|
}, i.isNaN = function() {
|
|
7217
7217
|
return !this.s;
|
|
7218
7218
|
}, i.isNegative = function() {
|
|
@@ -7221,156 +7221,156 @@ function br(t) {
|
|
|
7221
7221
|
return this.s > 0;
|
|
7222
7222
|
}, i.isZero = function() {
|
|
7223
7223
|
return !!this.c && this.c[0] == 0;
|
|
7224
|
-
}, i.minus = function(o,
|
|
7224
|
+
}, i.minus = function(o, l) {
|
|
7225
7225
|
var f, _, m, I, T = this, p = T.s;
|
|
7226
|
-
if (o = new A(o,
|
|
7227
|
-
if (p !=
|
|
7228
|
-
var E = T.e /
|
|
7226
|
+
if (o = new A(o, l), l = o.s, !p || !l) return new A(NaN);
|
|
7227
|
+
if (p != l) return o.s = -l, T.plus(o);
|
|
7228
|
+
var E = T.e / $, S = o.e / $, R = T.c, b = o.c;
|
|
7229
7229
|
if (!E || !S) {
|
|
7230
|
-
if (!R || !
|
|
7231
|
-
if (!R[0] || !
|
|
7230
|
+
if (!R || !b) return R ? (o.s = -l, o) : new A(b ? T : NaN);
|
|
7231
|
+
if (!R[0] || !b[0]) return b[0] ? (o.s = -l, o) : new A(R[0] ? T : u == 3 ? -0 : 0);
|
|
7232
7232
|
}
|
|
7233
|
-
if (E =
|
|
7234
|
-
for ((I = p < 0) ? (p = -p, m = R) : (S = E, m =
|
|
7233
|
+
if (E = ut(E), S = ut(S), R = R.slice(), p = E - S) {
|
|
7234
|
+
for ((I = p < 0) ? (p = -p, m = R) : (S = E, m = b), m.reverse(), l = p; l--; m.push(0)) ;
|
|
7235
7235
|
m.reverse();
|
|
7236
|
-
} else for (_ = (I = (p = R.length) < (
|
|
7237
|
-
I = R[
|
|
7236
|
+
} else for (_ = (I = (p = R.length) < (l = b.length)) ? p : l, p = l = 0; l < _; l++) if (R[l] != b[l]) {
|
|
7237
|
+
I = R[l] < b[l];
|
|
7238
7238
|
break;
|
|
7239
7239
|
}
|
|
7240
|
-
if (I && (m = R, R =
|
|
7241
|
-
for (
|
|
7242
|
-
if (R[--_] <
|
|
7243
|
-
for (f = _; f && !R[--f]; R[f] =
|
|
7240
|
+
if (I && (m = R, R = b, b = m, o.s = -o.s), l = (_ = b.length) - (f = R.length), l > 0) for (; l--; R[f++] = 0) ;
|
|
7241
|
+
for (l = pt - 1; _ > p; ) {
|
|
7242
|
+
if (R[--_] < b[_]) {
|
|
7243
|
+
for (f = _; f && !R[--f]; R[f] = l) ;
|
|
7244
7244
|
--R[f], R[_] += pt;
|
|
7245
7245
|
}
|
|
7246
|
-
R[_] -=
|
|
7246
|
+
R[_] -= b[_];
|
|
7247
7247
|
}
|
|
7248
7248
|
for (; R[0] == 0; R.splice(0, 1), --S) ;
|
|
7249
|
-
return R[0] ?
|
|
7250
|
-
}, i.modulo = i.mod = function(o,
|
|
7249
|
+
return R[0] ? C(o, R, S) : (o.s = u == 3 ? -1 : 1, o.c = [o.e = 0], o);
|
|
7250
|
+
}, i.modulo = i.mod = function(o, l) {
|
|
7251
7251
|
var f, _, m = this;
|
|
7252
|
-
return o = new A(o,
|
|
7253
|
-
}, i.multipliedBy = i.times = function(o,
|
|
7254
|
-
var f, _, m, I, T, p, E, S, R,
|
|
7252
|
+
return o = new A(o, l), !m.c || !o.s || o.c && !o.c[0] ? new A(NaN) : !o.c || m.c && !m.c[0] ? new A(m) : (v == 9 ? (_ = o.s, o.s = 1, f = e(m, o, 0, 3), o.s = _, f.s *= _) : f = e(m, o, 0, v), o = m.minus(f.times(o)), !o.c[0] && v == 1 && (o.s = m.s), o);
|
|
7253
|
+
}, i.multipliedBy = i.times = function(o, l) {
|
|
7254
|
+
var f, _, m, I, T, p, E, S, R, b, O, B, G, F, W, N = this, k = N.c, Y = (o = new A(o, l)).c;
|
|
7255
7255
|
if (!k || !Y || !k[0] || !Y[0]) return !N.s || !o.s || k && !k[0] && !Y || Y && !Y[0] && !k ? o.c = o.e = o.s = null : (o.s *= N.s, !k || !Y ? o.c = o.e = null : (o.c = [0], o.e = 0)), o;
|
|
7256
|
-
for (_ =
|
|
7257
|
-
for (F = pt,
|
|
7258
|
-
for (f = 0,
|
|
7259
|
-
|
|
7256
|
+
for (_ = ut(N.e / $) + ut(o.e / $), o.s *= N.s, E = k.length, b = Y.length, E < b && (G = k, k = Y, Y = G, m = E, E = b, b = m), m = E + b, G = []; m--; G.push(0)) ;
|
|
7257
|
+
for (F = pt, W = vt, m = b; --m >= 0; ) {
|
|
7258
|
+
for (f = 0, O = Y[m] % W, B = Y[m] / W | 0, T = E, I = m + T; I > m; ) S = k[--T] % W, R = k[T] / W | 0, p = B * S + R * O, S = O * S + p % W * W + G[I] + f, f = (S / F | 0) + (p / W | 0) + B * R, G[I--] = S % F;
|
|
7259
|
+
G[I] = f;
|
|
7260
7260
|
}
|
|
7261
|
-
return f ? ++_ :
|
|
7261
|
+
return f ? ++_ : G.splice(0, 1), C(o, G, _);
|
|
7262
7262
|
}, i.negated = function() {
|
|
7263
7263
|
var o = new A(this);
|
|
7264
7264
|
return o.s = -o.s || null, o;
|
|
7265
|
-
}, i.plus = function(o,
|
|
7265
|
+
}, i.plus = function(o, l) {
|
|
7266
7266
|
var f, _ = this, m = _.s;
|
|
7267
|
-
if (o = new A(o,
|
|
7268
|
-
if (m !=
|
|
7269
|
-
var I = _.e /
|
|
7267
|
+
if (o = new A(o, l), l = o.s, !m || !l) return new A(NaN);
|
|
7268
|
+
if (m != l) return o.s = -l, _.minus(o);
|
|
7269
|
+
var I = _.e / $, T = o.e / $, p = _.c, E = o.c;
|
|
7270
7270
|
if (!I || !T) {
|
|
7271
7271
|
if (!p || !E) return new A(m / 0);
|
|
7272
7272
|
if (!p[0] || !E[0]) return E[0] ? o : new A(p[0] ? _ : m * 0);
|
|
7273
7273
|
}
|
|
7274
|
-
if (I =
|
|
7274
|
+
if (I = ut(I), T = ut(T), p = p.slice(), m = I - T) {
|
|
7275
7275
|
for (m > 0 ? (T = I, f = E) : (m = -m, f = p), f.reverse(); m--; f.push(0)) ;
|
|
7276
7276
|
f.reverse();
|
|
7277
7277
|
}
|
|
7278
|
-
for (m = p.length,
|
|
7279
|
-
return m && (p = [m].concat(p), ++T),
|
|
7280
|
-
}, i.precision = i.sd = function(o,
|
|
7278
|
+
for (m = p.length, l = E.length, m - l < 0 && (f = E, E = p, p = f, l = m), m = 0; l; ) m = (p[--l] = p[l] + E[l] + m) / pt | 0, p[l] = pt === p[l] ? 0 : p[l] % pt;
|
|
7279
|
+
return m && (p = [m].concat(p), ++T), C(o, p, T);
|
|
7280
|
+
}, i.precision = i.sd = function(o, l) {
|
|
7281
7281
|
var f, _, m, I = this;
|
|
7282
|
-
if (o != null && o !== !!o) return
|
|
7282
|
+
if (o != null && o !== !!o) return Q(o, 1, tt), l == null ? l = u : Q(l, 0, 8), H(new A(I), o, l);
|
|
7283
7283
|
if (!(f = I.c)) return null;
|
|
7284
|
-
if (m = f.length - 1, _ = m *
|
|
7284
|
+
if (m = f.length - 1, _ = m * $ + 1, m = f[m]) {
|
|
7285
7285
|
for (; m % 10 == 0; m /= 10, _--) ;
|
|
7286
7286
|
for (m = f[0]; m >= 10; m /= 10, _++) ;
|
|
7287
7287
|
}
|
|
7288
7288
|
return o && I.e + 1 > _ && (_ = I.e + 1), _;
|
|
7289
7289
|
}, i.shiftedBy = function(o) {
|
|
7290
|
-
return
|
|
7290
|
+
return Q(o, -Re, Re), this.times("1e" + o);
|
|
7291
7291
|
}, i.squareRoot = i.sqrt = function() {
|
|
7292
|
-
var o,
|
|
7292
|
+
var o, l, f, _, m, I = this, T = I.c, p = I.s, E = I.e, S = a + 4, R = new A("0.5");
|
|
7293
7293
|
if (p !== 1 || !T || !T[0]) return new A(!p || p < 0 && (!T || T[0]) ? NaN : T ? I : 1 / 0);
|
|
7294
|
-
if (p = Math.sqrt(+j(I)), p == 0 || p == 1 / 0 ? (
|
|
7295
|
-
for (E = f.e, p = E + S, p < 3 && (p = 0); ; ) if (m = f, f = R.times(m.plus(e(I, m, S, 1))), ft(m.c).slice(0, p) === (
|
|
7294
|
+
if (p = Math.sqrt(+j(I)), p == 0 || p == 1 / 0 ? (l = ft(T), (l.length + E) % 2 == 0 && (l += "0"), p = Math.sqrt(+l), E = ut((E + 1) / 2) - (E < 0 || E % 2), p == 1 / 0 ? l = "5e" + E : (l = p.toExponential(), l = l.slice(0, l.indexOf("e") + 1) + E), f = new A(l)) : f = new A(p + ""), f.c[0]) {
|
|
7295
|
+
for (E = f.e, p = E + S, p < 3 && (p = 0); ; ) if (m = f, f = R.times(m.plus(e(I, m, S, 1))), ft(m.c).slice(0, p) === (l = ft(f.c)).slice(0, p)) if (f.e < E && --p, l = l.slice(p - 3, p + 1), l == "9999" || !_ && l == "4999") {
|
|
7296
7296
|
if (!_ && (H(m, m.e + a + 2, 0), m.times(m).eq(I))) {
|
|
7297
7297
|
f = m;
|
|
7298
7298
|
break;
|
|
7299
7299
|
}
|
|
7300
7300
|
S += 4, p += 4, _ = 1;
|
|
7301
7301
|
} else {
|
|
7302
|
-
(!+
|
|
7302
|
+
(!+l || !+l.slice(1) && l.charAt(0) == "5") && (H(f, f.e + a + 2, 1), o = !f.times(f).eq(I));
|
|
7303
7303
|
break;
|
|
7304
7304
|
}
|
|
7305
7305
|
}
|
|
7306
|
-
return H(f, f.e + a + 1,
|
|
7307
|
-
}, i.toExponential = function(o,
|
|
7308
|
-
return o != null && (
|
|
7309
|
-
}, i.toFixed = function(o,
|
|
7310
|
-
return o != null && (
|
|
7311
|
-
}, i.toFormat = function(o,
|
|
7306
|
+
return H(f, f.e + a + 1, u, o);
|
|
7307
|
+
}, i.toExponential = function(o, l) {
|
|
7308
|
+
return o != null && (Q(o, 0, tt), o++), L(this, o, l, 1);
|
|
7309
|
+
}, i.toFixed = function(o, l) {
|
|
7310
|
+
return o != null && (Q(o, 0, tt), o = o + this.e + 1), L(this, o, l);
|
|
7311
|
+
}, i.toFormat = function(o, l, f) {
|
|
7312
7312
|
var _, m = this;
|
|
7313
|
-
if (f == null) o != null &&
|
|
7313
|
+
if (f == null) o != null && l && typeof l == "object" ? (f = l, l = null) : o && typeof o == "object" ? (f = o, o = l = null) : f = M;
|
|
7314
7314
|
else if (typeof f != "object") throw Error(st + "Argument not an object: " + f);
|
|
7315
|
-
if (_ = m.toFixed(o,
|
|
7316
|
-
var I, T = _.split("."), p = +f.groupSize, E = +f.secondaryGroupSize, S = f.groupSeparator || "", R = T[0],
|
|
7317
|
-
if (E && (I = p, p = E, E = I,
|
|
7318
|
-
for (I =
|
|
7319
|
-
E > 0 && (R += S + B.slice(I)),
|
|
7315
|
+
if (_ = m.toFixed(o, l), m.c) {
|
|
7316
|
+
var I, T = _.split("."), p = +f.groupSize, E = +f.secondaryGroupSize, S = f.groupSeparator || "", R = T[0], b = T[1], O = m.s < 0, B = O ? R.slice(1) : R, G = B.length;
|
|
7317
|
+
if (E && (I = p, p = E, E = I, G -= I), p > 0 && G > 0) {
|
|
7318
|
+
for (I = G % p || p, R = B.substr(0, I); I < G; I += p) R += S + B.substr(I, p);
|
|
7319
|
+
E > 0 && (R += S + B.slice(I)), O && (R = "-" + R);
|
|
7320
7320
|
}
|
|
7321
|
-
_ =
|
|
7321
|
+
_ = b ? R + (f.decimalSeparator || "") + ((E = +f.fractionGroupSize) ? b.replace(new RegExp("\\d{" + E + "}\\B", "g"), "$&" + (f.fractionGroupSeparator || "")) : b) : R;
|
|
7322
7322
|
}
|
|
7323
7323
|
return (f.prefix || "") + _ + (f.suffix || "");
|
|
7324
7324
|
}, i.toFraction = function(o) {
|
|
7325
|
-
var
|
|
7325
|
+
var l, f, _, m, I, T, p, E, S, R, b, O, B = this, G = B.c;
|
|
7326
7326
|
if (o != null && (p = new A(o), !p.isInteger() && (p.c || p.s !== 1) || p.lt(s))) throw Error(st + "Argument " + (p.isInteger() ? "out of range: " : "not an integer: ") + j(p));
|
|
7327
|
-
if (
|
|
7328
|
-
for (
|
|
7329
|
-
return m = e(o.minus(f), _, 0, 1), E = E.plus(m.times(S)), f = f.plus(m.times(_)), E.s = S.s = B.s, I = I * 2,
|
|
7327
|
+
if (!G) return new A(B);
|
|
7328
|
+
for (l = new A(s), S = f = new A(s), _ = E = new A(s), O = ft(G), I = l.e = O.length - B.e - 1, l.c[0] = Te[(T = I % $) < 0 ? $ + T : T], o = !o || p.comparedTo(l) > 0 ? I > 0 ? l : S : p, T = w, w = 1 / 0, p = new A(O), E.c[0] = 0; R = e(p, l, 0, 1), m = f.plus(R.times(_)), m.comparedTo(o) != 1; ) f = _, _ = m, S = E.plus(R.times(m = S)), E = m, l = p.minus(R.times(m = l)), p = m;
|
|
7329
|
+
return m = e(o.minus(f), _, 0, 1), E = E.plus(m.times(S)), f = f.plus(m.times(_)), E.s = S.s = B.s, I = I * 2, b = e(S, _, I, u).minus(B).abs().comparedTo(e(E, f, I, u).minus(B).abs()) < 1 ? [S, _] : [E, f], w = T, b;
|
|
7330
7330
|
}, i.toNumber = function() {
|
|
7331
7331
|
return +j(this);
|
|
7332
|
-
}, i.toPrecision = function(o,
|
|
7333
|
-
return o != null &&
|
|
7332
|
+
}, i.toPrecision = function(o, l) {
|
|
7333
|
+
return o != null && Q(o, 1, tt), L(this, o, l, 2);
|
|
7334
7334
|
}, i.toString = function(o) {
|
|
7335
|
-
var
|
|
7336
|
-
return m === null ? _ ? (
|
|
7335
|
+
var l, f = this, _ = f.s, m = f.e;
|
|
7336
|
+
return m === null ? _ ? (l = "Infinity", _ < 0 && (l = "-" + l)) : l = "NaN" : (o == null ? l = m <= h || m >= d ? ie(ft(f.c), m) : wt(ft(f.c), m, "0") : o === 10 && P ? (f = H(new A(f), a + m + 1, u), l = wt(ft(f.c), f.e, "0")) : (Q(o, 2, y.length, "Base"), l = r(wt(ft(f.c), m, "0"), 10, o, _, true)), _ < 0 && f.c[0] && (l = "-" + l)), l;
|
|
7337
7337
|
}, i.valueOf = i.toJSON = function() {
|
|
7338
7338
|
return j(this);
|
|
7339
7339
|
}, i._isBigNumber = true, i[Symbol.toStringTag] = "BigNumber", i[Symbol.for("nodejs.util.inspect.custom")] = i.valueOf, t != null && A.set(t), A;
|
|
7340
7340
|
}
|
|
7341
|
-
c(
|
|
7342
|
-
function
|
|
7341
|
+
c(yr, "clone");
|
|
7342
|
+
function ut(t) {
|
|
7343
7343
|
var e = t | 0;
|
|
7344
7344
|
return t > 0 || t === e ? e : e - 1;
|
|
7345
7345
|
}
|
|
7346
|
-
c(
|
|
7346
|
+
c(ut, "bitFloor");
|
|
7347
7347
|
function ft(t) {
|
|
7348
7348
|
for (var e, r, n = 1, i = t.length, s = t[0] + ""; n < i; ) {
|
|
7349
|
-
for (e = t[n++] + "", r =
|
|
7349
|
+
for (e = t[n++] + "", r = $ - e.length; r--; e = "0" + e) ;
|
|
7350
7350
|
s += e;
|
|
7351
7351
|
}
|
|
7352
7352
|
for (i = s.length; s.charCodeAt(--i) === 48; ) ;
|
|
7353
7353
|
return s.slice(0, i + 1 || 1);
|
|
7354
7354
|
}
|
|
7355
7355
|
c(ft, "coeffToString");
|
|
7356
|
-
function
|
|
7357
|
-
var r, n, i = t.c, s = e.c, a = t.s,
|
|
7358
|
-
if (!a || !
|
|
7359
|
-
if (r = i && !i[0], n = s && !s[0], r || n) return r ? n ? 0 : -
|
|
7360
|
-
if (a !=
|
|
7356
|
+
function Mt(t, e) {
|
|
7357
|
+
var r, n, i = t.c, s = e.c, a = t.s, u = e.s, h = t.e, d = e.e;
|
|
7358
|
+
if (!a || !u) return null;
|
|
7359
|
+
if (r = i && !i[0], n = s && !s[0], r || n) return r ? n ? 0 : -u : a;
|
|
7360
|
+
if (a != u) return a;
|
|
7361
7361
|
if (r = a < 0, n = h == d, !i || !s) return n ? 0 : !i ^ r ? 1 : -1;
|
|
7362
7362
|
if (!n) return h > d ^ r ? 1 : -1;
|
|
7363
|
-
for (
|
|
7363
|
+
for (u = (h = i.length) < (d = s.length) ? h : d, a = 0; a < u; a++) if (i[a] != s[a]) return i[a] > s[a] ^ r ? 1 : -1;
|
|
7364
7364
|
return h == d ? 0 : h > d ^ r ? 1 : -1;
|
|
7365
7365
|
}
|
|
7366
|
-
c(
|
|
7367
|
-
function
|
|
7368
|
-
if (t < e || t > r || t !==
|
|
7366
|
+
c(Mt, "compare");
|
|
7367
|
+
function Q(t, e, r, n) {
|
|
7368
|
+
if (t < e || t > r || t !== lt(t)) throw Error(st + (n || "Argument") + (typeof t == "number" ? t < e || t > r ? " out of range: " : " not an integer: " : " not a primitive number: ") + String(t));
|
|
7369
7369
|
}
|
|
7370
|
-
c(
|
|
7370
|
+
c(Q, "intCheck");
|
|
7371
7371
|
function ne(t) {
|
|
7372
7372
|
var e = t.c.length - 1;
|
|
7373
|
-
return
|
|
7373
|
+
return ut(t.e / $) == e && t.c[e] % 2 != 0;
|
|
7374
7374
|
}
|
|
7375
7375
|
c(ne, "isOdd");
|
|
7376
7376
|
function ie(t, e) {
|
|
@@ -7389,7 +7389,7 @@ function wt(t, e, r) {
|
|
|
7389
7389
|
return t;
|
|
7390
7390
|
}
|
|
7391
7391
|
c(wt, "toFixedPoint");
|
|
7392
|
-
var Ii =
|
|
7392
|
+
var Ii = yr();
|
|
7393
7393
|
const Si = 24, qt = 32, Ri = c(() => typeof globalThis < "u" && globalThis.crypto && typeof globalThis.crypto.getRandomValues == "function" ? () => {
|
|
7394
7394
|
const t = new Uint32Array(1);
|
|
7395
7395
|
return globalThis.crypto.getRandomValues(t), t[0] / 4294967296;
|
|
@@ -7404,35 +7404,35 @@ function Ti(t) {
|
|
|
7404
7404
|
return e;
|
|
7405
7405
|
}
|
|
7406
7406
|
c(Ti, "bufToBigInt");
|
|
7407
|
-
const
|
|
7407
|
+
const Ur = c((t = "") => {
|
|
7408
7408
|
const e = new TextEncoder();
|
|
7409
7409
|
return Ti(Ei(e.encode(t))).toString(36).slice(1);
|
|
7410
7410
|
}, "hash"), vr = Array.from({ length: 26 }, (t, e) => String.fromCharCode(e + 97)), wi = c((t) => vr[Math.floor(t() * vr.length)], "randomLetter"), Ai = c(({ globalObj: t = typeof global < "u" ? global : typeof window < "u" ? window : {}, random: e = we } = {}) => {
|
|
7411
7411
|
const r = Object.keys(t).toString(), n = r.length ? r + Ae(qt, e) : Ae(qt, e);
|
|
7412
|
-
return
|
|
7413
|
-
}, "createFingerprint"),
|
|
7412
|
+
return Ur(n).substring(0, qt);
|
|
7413
|
+
}, "createFingerprint"), bi = c((t) => () => t++, "createCounter"), yi = 476782367, Ui = c(({ random: t = we, counter: e = bi(Math.floor(t() * yi)), length: r = Si, fingerprint: n = Ai({ random: t }) } = {}) => {
|
|
7414
7414
|
if (r > qt) throw new Error(`Length must be between 2 and ${qt}. Received: ${r}`);
|
|
7415
7415
|
return c(function() {
|
|
7416
|
-
const s = wi(t), a = Date.now().toString(36),
|
|
7417
|
-
return `${s +
|
|
7416
|
+
const s = wi(t), a = Date.now().toString(36), u = e().toString(36), h = Ae(r, t), d = `${a + h + u + n}`;
|
|
7417
|
+
return `${s + Ur(d).substring(1, r)}`;
|
|
7418
7418
|
}, "cuid2");
|
|
7419
|
-
}, "init"), Yt = vi(
|
|
7419
|
+
}, "init"), Yt = vi(Ui);
|
|
7420
7420
|
function vi(t) {
|
|
7421
7421
|
let e;
|
|
7422
7422
|
return () => (e || (e = t()), e());
|
|
7423
7423
|
}
|
|
7424
7424
|
c(vi, "lazy");
|
|
7425
|
-
var
|
|
7426
|
-
function
|
|
7425
|
+
var Ci = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {};
|
|
7426
|
+
function Cr(t) {
|
|
7427
7427
|
return t && t.__esModule && Object.prototype.hasOwnProperty.call(t, "default") ? t.default : t;
|
|
7428
7428
|
}
|
|
7429
|
-
c(
|
|
7429
|
+
c(Cr, "getDefaultExportFromCjs");
|
|
7430
7430
|
var xt = {}, Br;
|
|
7431
7431
|
function Bi() {
|
|
7432
7432
|
if (Br) return xt;
|
|
7433
7433
|
Br = 1, Object.defineProperty(xt, "__esModule", { value: true }), xt.isBinaryFileSync = xt.isBinaryFile = void 0;
|
|
7434
|
-
const t =
|
|
7435
|
-
class
|
|
7434
|
+
const t = Wt, e = kn, r = (0, e.promisify)(t.stat), n = (0, e.promisify)(t.open), i = (0, e.promisify)(t.close), s = 512, a = 3;
|
|
7435
|
+
class u {
|
|
7436
7436
|
static {
|
|
7437
7437
|
c(this, "Reader");
|
|
7438
7438
|
}
|
|
@@ -7451,20 +7451,20 @@ function Bi() {
|
|
|
7451
7451
|
}
|
|
7452
7452
|
next(P) {
|
|
7453
7453
|
const A = new Array();
|
|
7454
|
-
for (let
|
|
7454
|
+
for (let L = 0; L < P; L++) {
|
|
7455
7455
|
if (this.error) return A;
|
|
7456
|
-
A[
|
|
7456
|
+
A[L] = this.nextByte();
|
|
7457
7457
|
}
|
|
7458
7458
|
return A;
|
|
7459
7459
|
}
|
|
7460
7460
|
}
|
|
7461
|
-
function h(
|
|
7461
|
+
function h(y) {
|
|
7462
7462
|
let P = 0, A = 0;
|
|
7463
|
-
for (; !
|
|
7464
|
-
const
|
|
7465
|
-
if (A = A | (
|
|
7463
|
+
for (; !y.hasError(); ) {
|
|
7464
|
+
const L = y.nextByte();
|
|
7465
|
+
if (A = A | (L & 127) << 7 * P, (L & 128) === 0) break;
|
|
7466
7466
|
if (P >= 10) {
|
|
7467
|
-
|
|
7467
|
+
y.error = true;
|
|
7468
7468
|
break;
|
|
7469
7469
|
}
|
|
7470
7470
|
P++;
|
|
@@ -7472,123 +7472,123 @@ function Bi() {
|
|
|
7472
7472
|
return A;
|
|
7473
7473
|
}
|
|
7474
7474
|
c(h, "readProtoVarInt");
|
|
7475
|
-
function d(
|
|
7476
|
-
switch (h(
|
|
7475
|
+
function d(y) {
|
|
7476
|
+
switch (h(y) & 7) {
|
|
7477
7477
|
case 0:
|
|
7478
|
-
return h(
|
|
7478
|
+
return h(y), true;
|
|
7479
7479
|
case 1:
|
|
7480
|
-
return
|
|
7480
|
+
return y.next(8), true;
|
|
7481
7481
|
case 2:
|
|
7482
|
-
const
|
|
7483
|
-
return
|
|
7482
|
+
const L = h(y);
|
|
7483
|
+
return y.next(L), true;
|
|
7484
7484
|
case 5:
|
|
7485
|
-
return
|
|
7485
|
+
return y.next(4), true;
|
|
7486
7486
|
}
|
|
7487
7487
|
return false;
|
|
7488
7488
|
}
|
|
7489
7489
|
c(d, "readProtoMessage");
|
|
7490
|
-
function g(
|
|
7491
|
-
const A = new
|
|
7492
|
-
let
|
|
7490
|
+
function g(y, P) {
|
|
7491
|
+
const A = new u(y, P);
|
|
7492
|
+
let L = 0;
|
|
7493
7493
|
for (; ; ) {
|
|
7494
7494
|
if (!d(A) && !A.hasError()) return false;
|
|
7495
7495
|
if (A.hasError()) break;
|
|
7496
|
-
|
|
7496
|
+
L++;
|
|
7497
7497
|
}
|
|
7498
|
-
return
|
|
7498
|
+
return L > 0;
|
|
7499
7499
|
}
|
|
7500
7500
|
c(g, "isBinaryProto");
|
|
7501
|
-
async function w(
|
|
7502
|
-
if (
|
|
7503
|
-
const A = await r(
|
|
7504
|
-
|
|
7505
|
-
const
|
|
7506
|
-
return new Promise((
|
|
7507
|
-
t.read(
|
|
7508
|
-
if (i(
|
|
7501
|
+
async function w(y, P) {
|
|
7502
|
+
if (D(y)) {
|
|
7503
|
+
const A = await r(y);
|
|
7504
|
+
M(A);
|
|
7505
|
+
const L = await n(y, "r"), x = Buffer.alloc(s + a);
|
|
7506
|
+
return new Promise((C, H) => {
|
|
7507
|
+
t.read(L, x, 0, s + a, 0, (j, o, l) => {
|
|
7508
|
+
if (i(L), j) H(j);
|
|
7509
7509
|
else try {
|
|
7510
|
-
|
|
7510
|
+
C(v(x, o));
|
|
7511
7511
|
} catch (f) {
|
|
7512
7512
|
H(f);
|
|
7513
7513
|
}
|
|
7514
7514
|
});
|
|
7515
7515
|
});
|
|
7516
|
-
} else return P === void 0 && (P =
|
|
7516
|
+
} else return P === void 0 && (P = y.length), v(y, P);
|
|
7517
7517
|
}
|
|
7518
7518
|
c(w, "isBinaryFile"), xt.isBinaryFile = w;
|
|
7519
|
-
function
|
|
7520
|
-
if (
|
|
7521
|
-
const A = t.statSync(
|
|
7522
|
-
|
|
7523
|
-
const
|
|
7524
|
-
return t.closeSync(
|
|
7525
|
-
} else return P === void 0 && (P =
|
|
7526
|
-
}
|
|
7527
|
-
c(
|
|
7528
|
-
function v(
|
|
7519
|
+
function U(y, P) {
|
|
7520
|
+
if (D(y)) {
|
|
7521
|
+
const A = t.statSync(y);
|
|
7522
|
+
M(A);
|
|
7523
|
+
const L = t.openSync(y, "r"), x = Buffer.alloc(s + a), C = t.readSync(L, x, 0, s + a, 0);
|
|
7524
|
+
return t.closeSync(L), v(x, C);
|
|
7525
|
+
} else return P === void 0 && (P = y.length), v(y, P);
|
|
7526
|
+
}
|
|
7527
|
+
c(U, "isBinaryFileSync"), xt.isBinaryFileSync = U;
|
|
7528
|
+
function v(y, P) {
|
|
7529
7529
|
if (P === 0) return false;
|
|
7530
7530
|
let A = 0;
|
|
7531
|
-
const
|
|
7532
|
-
if (P >= 3 &&
|
|
7533
|
-
if (
|
|
7534
|
-
if (P >= 2 &&
|
|
7535
|
-
for (let
|
|
7536
|
-
if (
|
|
7537
|
-
if ((
|
|
7538
|
-
if (
|
|
7539
|
-
if (
|
|
7540
|
-
} else if (
|
|
7541
|
-
if (
|
|
7542
|
-
|
|
7531
|
+
const L = Math.min(P, s + a), x = Math.min(L, s);
|
|
7532
|
+
if (P >= 3 && y[0] === 239 && y[1] === 187 && y[2] === 191 || P >= 4 && y[0] === 0 && y[1] === 0 && y[2] === 254 && y[3] === 255 || P >= 4 && y[0] === 255 && y[1] === 254 && y[2] === 0 && y[3] === 0 || P >= 4 && y[0] === 132 && y[1] === 49 && y[2] === 149 && y[3] === 51) return false;
|
|
7533
|
+
if (L >= 5 && y.slice(0, 5).toString() === "%PDF-") return true;
|
|
7534
|
+
if (P >= 2 && y[0] === 254 && y[1] === 255 || P >= 2 && y[0] === 255 && y[1] === 254) return false;
|
|
7535
|
+
for (let C = 0; C < x; C++) {
|
|
7536
|
+
if (y[C] === 0) return true;
|
|
7537
|
+
if ((y[C] < 7 || y[C] > 14) && (y[C] < 32 || y[C] > 127)) {
|
|
7538
|
+
if (y[C] >= 192 && y[C] <= 223 && C + 1 < L) {
|
|
7539
|
+
if (C++, y[C] >= 128 && y[C] <= 191) continue;
|
|
7540
|
+
} else if (y[C] >= 224 && y[C] <= 239 && C + 2 < L) {
|
|
7541
|
+
if (C++, y[C] >= 128 && y[C] <= 191 && y[C + 1] >= 128 && y[C + 1] <= 191) {
|
|
7542
|
+
C++;
|
|
7543
7543
|
continue;
|
|
7544
7544
|
}
|
|
7545
|
-
} else if (
|
|
7546
|
-
|
|
7545
|
+
} else if (y[C] >= 240 && y[C] <= 247 && C + 3 < L && (C++, y[C] >= 128 && y[C] <= 191 && y[C + 1] >= 128 && y[C + 1] <= 191 && y[C + 2] >= 128 && y[C + 2] <= 191)) {
|
|
7546
|
+
C += 2;
|
|
7547
7547
|
continue;
|
|
7548
7548
|
}
|
|
7549
|
-
if (A++,
|
|
7549
|
+
if (A++, C >= 32 && A * 100 / x > 10) return true;
|
|
7550
7550
|
}
|
|
7551
7551
|
}
|
|
7552
|
-
return !!(A * 100 / x > 10 || A > 1 && g(
|
|
7552
|
+
return !!(A * 100 / x > 10 || A > 1 && g(y, x));
|
|
7553
7553
|
}
|
|
7554
7554
|
c(v, "isBinaryCheck");
|
|
7555
|
-
function
|
|
7556
|
-
return typeof
|
|
7555
|
+
function D(y) {
|
|
7556
|
+
return typeof y == "string";
|
|
7557
7557
|
}
|
|
7558
|
-
c(
|
|
7559
|
-
function
|
|
7560
|
-
if (!
|
|
7558
|
+
c(D, "isString");
|
|
7559
|
+
function M(y) {
|
|
7560
|
+
if (!y.isFile()) throw new Error("Path provided was not a file!");
|
|
7561
7561
|
}
|
|
7562
|
-
return c(
|
|
7562
|
+
return c(M, "isStatFile"), xt;
|
|
7563
7563
|
}
|
|
7564
7564
|
c(Bi, "requireLib");
|
|
7565
|
-
var Pi = Bi(), z = Uint8Array, at = Uint16Array,
|
|
7565
|
+
var Pi = Bi(), z = Uint8Array, at = Uint16Array, be = Int32Array, se = new z([0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, 0, 0, 0]), oe = new z([0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13, 0, 0]), ye = new z([16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15]), Pr = c(function(t, e) {
|
|
7566
7566
|
for (var r = new at(31), n = 0; n < 31; ++n) r[n] = e += 1 << t[n - 1];
|
|
7567
|
-
for (var i = new
|
|
7567
|
+
for (var i = new be(r[30]), n = 1; n < 30; ++n) for (var s = r[n]; s < r[n + 1]; ++s) i[s] = s - r[n] << 5 | n;
|
|
7568
7568
|
return { b: r, r: i };
|
|
7569
|
-
}, "freb"),
|
|
7570
|
-
|
|
7571
|
-
for (var Nr = Pr(oe, 0),
|
|
7572
|
-
var
|
|
7573
|
-
|
|
7569
|
+
}, "freb"), Lr = Pr(se, 2), Or = Lr.b, Ue = Lr.r;
|
|
7570
|
+
Or[28] = 258, Ue[258] = 28;
|
|
7571
|
+
for (var Nr = Pr(oe, 0), Li = Nr.b, Dr = Nr.r, ve = new at(32768), K = 0; K < 32768; ++K) {
|
|
7572
|
+
var Ct = (K & 43690) >> 1 | (K & 21845) << 1;
|
|
7573
|
+
Ct = (Ct & 52428) >> 2 | (Ct & 13107) << 2, Ct = (Ct & 61680) >> 4 | (Ct & 3855) << 4, ve[K] = ((Ct & 65280) >> 8 | (Ct & 255) << 8) >> 1;
|
|
7574
7574
|
}
|
|
7575
7575
|
for (var _t = c((function(t, e, r) {
|
|
7576
7576
|
for (var n = t.length, i = 0, s = new at(e); i < n; ++i) t[i] && ++s[t[i] - 1];
|
|
7577
7577
|
var a = new at(e);
|
|
7578
7578
|
for (i = 1; i < e; ++i) a[i] = a[i - 1] + s[i - 1] << 1;
|
|
7579
|
-
var
|
|
7579
|
+
var u;
|
|
7580
7580
|
if (r) {
|
|
7581
|
-
|
|
7581
|
+
u = new at(1 << e);
|
|
7582
7582
|
var h = 15 - e;
|
|
7583
|
-
for (i = 0; i < n; ++i) if (t[i]) for (var d = i << 4 | t[i], g = e - t[i], w = a[t[i] - 1]++ << g,
|
|
7584
|
-
} else for (
|
|
7585
|
-
return
|
|
7586
|
-
}), "hMap"), Bt = new z(288),
|
|
7587
|
-
for (var
|
|
7588
|
-
for (var
|
|
7589
|
-
for (var
|
|
7590
|
-
for (var
|
|
7591
|
-
var
|
|
7583
|
+
for (i = 0; i < n; ++i) if (t[i]) for (var d = i << 4 | t[i], g = e - t[i], w = a[t[i] - 1]++ << g, U = w | (1 << g) - 1; w <= U; ++w) u[ve[w] >> h] = d;
|
|
7584
|
+
} else for (u = new at(n), i = 0; i < n; ++i) t[i] && (u[i] = ve[a[t[i] - 1]++] >> 15 - t[i]);
|
|
7585
|
+
return u;
|
|
7586
|
+
}), "hMap"), Bt = new z(288), K = 0; K < 144; ++K) Bt[K] = 8;
|
|
7587
|
+
for (var K = 144; K < 256; ++K) Bt[K] = 9;
|
|
7588
|
+
for (var K = 256; K < 280; ++K) Bt[K] = 7;
|
|
7589
|
+
for (var K = 280; K < 288; ++K) Bt[K] = 8;
|
|
7590
|
+
for (var Qt = new z(32), K = 0; K < 32; ++K) Qt[K] = 5;
|
|
7591
|
+
var Oi = _t(Bt, 9, 0), Ni = _t(Bt, 9, 1), Di = _t(Qt, 5, 0), Mi = _t(Qt, 5, 1), Ce = c(function(t) {
|
|
7592
7592
|
for (var e = t[0], r = 1; r < t.length; ++r) t[r] > e && (e = t[r]);
|
|
7593
7593
|
return e;
|
|
7594
7594
|
}, "max"), mt = c(function(t, e, r) {
|
|
@@ -7599,16 +7599,16 @@ var Li = _t(Bt, 9, 0), Ni = _t(Bt, 9, 1), Mi = _t(Jt, 5, 0), Di = _t(Jt, 5, 1),
|
|
|
7599
7599
|
return (t[r] | t[r + 1] << 8 | t[r + 2] << 16) >> (e & 7);
|
|
7600
7600
|
}, "bits16"), Pe = c(function(t) {
|
|
7601
7601
|
return (t + 7) / 8 | 0;
|
|
7602
|
-
}, "shft"),
|
|
7602
|
+
}, "shft"), Jt = c(function(t, e, r) {
|
|
7603
7603
|
return (e == null || e < 0) && (e = 0), (r == null || r > t.length) && (r = t.length), new z(t.subarray(e, r));
|
|
7604
7604
|
}, "slc"), xi = ["unexpected EOF", "invalid block type", "invalid length/literal", "invalid distance", "stream finished", "no stream handler", , "no callback", "invalid UTF-8 data", "extra field too long", "date not in range 1980-2099", "filename too long", "stream finishing", "invalid zip data"], nt = c(function(t, e, r) {
|
|
7605
7605
|
var n = new Error(e || xi[t]);
|
|
7606
7606
|
if (n.code = t, Error.captureStackTrace && Error.captureStackTrace(n, nt), !r) throw n;
|
|
7607
7607
|
return n;
|
|
7608
|
-
}, "err"),
|
|
7608
|
+
}, "err"), $i = c(function(t, e, r, n) {
|
|
7609
7609
|
var i = t.length, s = n ? n.length : 0;
|
|
7610
7610
|
if (!i || e.f && !e.l) return r || new z(0);
|
|
7611
|
-
var a = !r,
|
|
7611
|
+
var a = !r, u = a || e.i != 2, h = e.i;
|
|
7612
7612
|
a && (r = new z(i * 3));
|
|
7613
7613
|
var d = c(function(rt) {
|
|
7614
7614
|
var dt = r.length;
|
|
@@ -7616,37 +7616,37 @@ var Li = _t(Bt, 9, 0), Ni = _t(Bt, 9, 1), Mi = _t(Jt, 5, 0), Di = _t(Jt, 5, 1),
|
|
|
7616
7616
|
var X = new z(Math.max(dt * 2, rt));
|
|
7617
7617
|
X.set(r), r = X;
|
|
7618
7618
|
}
|
|
7619
|
-
}, "cbuf"), g = e.f || 0, w = e.p || 0,
|
|
7619
|
+
}, "cbuf"), g = e.f || 0, w = e.p || 0, U = e.b || 0, v = e.l, D = e.d, M = e.m, y = e.n, P = i * 8;
|
|
7620
7620
|
do {
|
|
7621
7621
|
if (!v) {
|
|
7622
7622
|
g = mt(t, w, 1);
|
|
7623
7623
|
var A = mt(t, w + 1, 3);
|
|
7624
|
-
if (w += 3, A) if (A == 1) v = Ni,
|
|
7624
|
+
if (w += 3, A) if (A == 1) v = Ni, D = Mi, M = 9, y = 5;
|
|
7625
7625
|
else if (A == 2) {
|
|
7626
7626
|
var H = mt(t, w, 31) + 257, j = mt(t, w + 10, 15) + 4, o = H + mt(t, w + 5, 31) + 1;
|
|
7627
7627
|
w += 14;
|
|
7628
|
-
for (var
|
|
7628
|
+
for (var l = new z(o), f = new z(19), _ = 0; _ < j; ++_) f[ye[_]] = mt(t, w + _ * 3, 7);
|
|
7629
7629
|
w += j * 3;
|
|
7630
|
-
for (var m =
|
|
7630
|
+
for (var m = Ce(f), I = (1 << m) - 1, T = _t(f, m, 1), _ = 0; _ < o; ) {
|
|
7631
7631
|
var p = T[mt(t, w, I)];
|
|
7632
7632
|
w += p & 15;
|
|
7633
|
-
var
|
|
7634
|
-
if (
|
|
7633
|
+
var L = p >> 4;
|
|
7634
|
+
if (L < 16) l[_++] = L;
|
|
7635
7635
|
else {
|
|
7636
7636
|
var E = 0, S = 0;
|
|
7637
|
-
for (
|
|
7637
|
+
for (L == 16 ? (S = 3 + mt(t, w, 3), w += 2, E = l[_ - 1]) : L == 17 ? (S = 3 + mt(t, w, 7), w += 3) : L == 18 && (S = 11 + mt(t, w, 127), w += 7); S--; ) l[_++] = E;
|
|
7638
7638
|
}
|
|
7639
7639
|
}
|
|
7640
|
-
var R =
|
|
7641
|
-
|
|
7640
|
+
var R = l.subarray(0, H), b = l.subarray(H);
|
|
7641
|
+
M = Ce(R), y = Ce(b), v = _t(R, M, 1), D = _t(b, y, 1);
|
|
7642
7642
|
} else nt(1);
|
|
7643
7643
|
else {
|
|
7644
|
-
var
|
|
7645
|
-
if (
|
|
7644
|
+
var L = Pe(w) + 4, x = t[L - 4] | t[L - 3] << 8, C = L + x;
|
|
7645
|
+
if (C > i) {
|
|
7646
7646
|
h && nt(0);
|
|
7647
7647
|
break;
|
|
7648
7648
|
}
|
|
7649
|
-
|
|
7649
|
+
u && d(U + x), r.set(t.subarray(L, C), U), e.b = U += x, e.p = w = C * 8, e.f = g;
|
|
7650
7650
|
continue;
|
|
7651
7651
|
}
|
|
7652
7652
|
if (w > P) {
|
|
@@ -7654,46 +7654,46 @@ var Li = _t(Bt, 9, 0), Ni = _t(Bt, 9, 1), Mi = _t(Jt, 5, 0), Di = _t(Jt, 5, 1),
|
|
|
7654
7654
|
break;
|
|
7655
7655
|
}
|
|
7656
7656
|
}
|
|
7657
|
-
|
|
7658
|
-
for (var
|
|
7659
|
-
var E = v[Be(t, w) &
|
|
7657
|
+
u && d(U + 131072);
|
|
7658
|
+
for (var O = (1 << M) - 1, B = (1 << y) - 1, G = w; ; G = w) {
|
|
7659
|
+
var E = v[Be(t, w) & O], F = E >> 4;
|
|
7660
7660
|
if (w += E & 15, w > P) {
|
|
7661
7661
|
h && nt(0);
|
|
7662
7662
|
break;
|
|
7663
7663
|
}
|
|
7664
|
-
if (E || nt(2), F < 256) r[
|
|
7664
|
+
if (E || nt(2), F < 256) r[U++] = F;
|
|
7665
7665
|
else if (F == 256) {
|
|
7666
|
-
|
|
7666
|
+
G = w, v = null;
|
|
7667
7667
|
break;
|
|
7668
7668
|
} else {
|
|
7669
|
-
var
|
|
7669
|
+
var W = F - 254;
|
|
7670
7670
|
if (F > 264) {
|
|
7671
7671
|
var _ = F - 257, N = se[_];
|
|
7672
|
-
|
|
7672
|
+
W = mt(t, w, (1 << N) - 1) + Or[_], w += N;
|
|
7673
7673
|
}
|
|
7674
|
-
var k =
|
|
7674
|
+
var k = D[Be(t, w) & B], Y = k >> 4;
|
|
7675
7675
|
k || nt(3), w += k & 15;
|
|
7676
|
-
var
|
|
7676
|
+
var b = Li[Y];
|
|
7677
7677
|
if (Y > 3) {
|
|
7678
7678
|
var N = oe[Y];
|
|
7679
|
-
|
|
7679
|
+
b += Be(t, w) & (1 << N) - 1, w += N;
|
|
7680
7680
|
}
|
|
7681
7681
|
if (w > P) {
|
|
7682
7682
|
h && nt(0);
|
|
7683
7683
|
break;
|
|
7684
7684
|
}
|
|
7685
|
-
|
|
7686
|
-
var ht =
|
|
7687
|
-
if (
|
|
7688
|
-
var
|
|
7689
|
-
for (
|
|
7685
|
+
u && d(U + 131072);
|
|
7686
|
+
var ht = U + W;
|
|
7687
|
+
if (U < b) {
|
|
7688
|
+
var yt = s - b, Ut = Math.min(b, ht);
|
|
7689
|
+
for (yt + U < 0 && nt(3); U < Ut; ++U) r[U] = n[yt + U];
|
|
7690
7690
|
}
|
|
7691
|
-
for (;
|
|
7691
|
+
for (; U < ht; ++U) r[U] = r[U - b];
|
|
7692
7692
|
}
|
|
7693
7693
|
}
|
|
7694
|
-
e.l = v, e.p =
|
|
7694
|
+
e.l = v, e.p = G, e.b = U, e.f = g, v && (g = 1, e.m = M, e.d = D, e.n = y);
|
|
7695
7695
|
} while (!g);
|
|
7696
|
-
return
|
|
7696
|
+
return U != r.length && a ? Jt(r, 0, U) : r.subarray(0, U);
|
|
7697
7697
|
}, "inflt"), At = c(function(t, e, r) {
|
|
7698
7698
|
r <<= e & 7;
|
|
7699
7699
|
var n = e / 8 | 0;
|
|
@@ -7702,48 +7702,48 @@ var Li = _t(Bt, 9, 0), Ni = _t(Bt, 9, 1), Mi = _t(Jt, 5, 0), Di = _t(Jt, 5, 1),
|
|
|
7702
7702
|
r <<= e & 7;
|
|
7703
7703
|
var n = e / 8 | 0;
|
|
7704
7704
|
t[n] |= r, t[n + 1] |= r >> 8, t[n + 2] |= r >> 16;
|
|
7705
|
-
}, "wbits16"),
|
|
7705
|
+
}, "wbits16"), Le = c(function(t, e) {
|
|
7706
7706
|
for (var r = [], n = 0; n < t.length; ++n) t[n] && r.push({ s: n, f: t[n] });
|
|
7707
7707
|
var i = r.length, s = r.slice();
|
|
7708
|
-
if (!i) return { t:
|
|
7708
|
+
if (!i) return { t: Gr, l: 0 };
|
|
7709
7709
|
if (i == 1) {
|
|
7710
7710
|
var a = new z(r[0].s + 1);
|
|
7711
7711
|
return a[r[0].s] = 1, { t: a, l: 1 };
|
|
7712
7712
|
}
|
|
7713
|
-
r.sort(function(
|
|
7714
|
-
return
|
|
7713
|
+
r.sort(function(C, H) {
|
|
7714
|
+
return C.f - H.f;
|
|
7715
7715
|
}), r.push({ s: -1, f: 25001 });
|
|
7716
|
-
var
|
|
7717
|
-
for (r[0] = { s: -1, f:
|
|
7718
|
-
for (var
|
|
7719
|
-
var v = new at(
|
|
7720
|
-
if (
|
|
7721
|
-
var n = 0,
|
|
7716
|
+
var u = r[0], h = r[1], d = 0, g = 1, w = 2;
|
|
7717
|
+
for (r[0] = { s: -1, f: u.f + h.f, l: u, r: h }; g != i - 1; ) u = r[r[d].f < r[w].f ? d++ : w++], h = r[d != g && r[d].f < r[w].f ? d++ : w++], r[g++] = { s: -1, f: u.f + h.f, l: u, r: h };
|
|
7718
|
+
for (var U = s[0].s, n = 1; n < i; ++n) s[n].s > U && (U = s[n].s);
|
|
7719
|
+
var v = new at(U + 1), D = Oe(r[g - 1], v, 0);
|
|
7720
|
+
if (D > e) {
|
|
7721
|
+
var n = 0, M = 0, y = D - e, P = 1 << y;
|
|
7722
7722
|
for (s.sort(function(H, j) {
|
|
7723
7723
|
return v[j.s] - v[H.s] || H.f - j.f;
|
|
7724
7724
|
}); n < i; ++n) {
|
|
7725
7725
|
var A = s[n].s;
|
|
7726
|
-
if (v[A] > e)
|
|
7726
|
+
if (v[A] > e) M += P - (1 << D - v[A]), v[A] = e;
|
|
7727
7727
|
else break;
|
|
7728
7728
|
}
|
|
7729
|
-
for (
|
|
7730
|
-
var
|
|
7731
|
-
v[
|
|
7729
|
+
for (M >>= y; M > 0; ) {
|
|
7730
|
+
var L = s[n].s;
|
|
7731
|
+
v[L] < e ? M -= 1 << e - v[L]++ - 1 : ++n;
|
|
7732
7732
|
}
|
|
7733
|
-
for (; n >= 0 &&
|
|
7733
|
+
for (; n >= 0 && M; --n) {
|
|
7734
7734
|
var x = s[n].s;
|
|
7735
|
-
v[x] == e && (--v[x], ++
|
|
7735
|
+
v[x] == e && (--v[x], ++M);
|
|
7736
7736
|
}
|
|
7737
|
-
|
|
7737
|
+
D = e;
|
|
7738
7738
|
}
|
|
7739
|
-
return { t: new z(v), l:
|
|
7740
|
-
}, "hTree"),
|
|
7741
|
-
return t.s == -1 ? Math.max(
|
|
7742
|
-
}, "ln"),
|
|
7739
|
+
return { t: new z(v), l: D };
|
|
7740
|
+
}, "hTree"), Oe = c(function(t, e, r) {
|
|
7741
|
+
return t.s == -1 ? Math.max(Oe(t.l, e, r + 1), Oe(t.r, e, r + 1)) : e[t.s] = r;
|
|
7742
|
+
}, "ln"), Mr = c(function(t) {
|
|
7743
7743
|
for (var e = t.length; e && !t[--e]; ) ;
|
|
7744
7744
|
for (var r = new at(++e), n = 0, i = t[0], s = 1, a = c(function(h) {
|
|
7745
7745
|
r[n++] = h;
|
|
7746
|
-
}, "w"),
|
|
7746
|
+
}, "w"), u = 1; u <= e; ++u) if (t[u] == i && u != e) ++s;
|
|
7747
7747
|
else {
|
|
7748
7748
|
if (!i && s > 2) {
|
|
7749
7749
|
for (; s > 138; s -= 138) a(32754);
|
|
@@ -7753,7 +7753,7 @@ var Li = _t(Bt, 9, 0), Ni = _t(Bt, 9, 1), Mi = _t(Jt, 5, 0), Di = _t(Jt, 5, 1),
|
|
|
7753
7753
|
s > 2 && (a(s - 3 << 5 | 8208), s = 0);
|
|
7754
7754
|
}
|
|
7755
7755
|
for (; s--; ) a(i);
|
|
7756
|
-
s = 1, i = t[
|
|
7756
|
+
s = 1, i = t[u];
|
|
7757
7757
|
}
|
|
7758
7758
|
return { c: r.subarray(0, n), n: e };
|
|
7759
7759
|
}, "lc"), Xt = c(function(t, e) {
|
|
@@ -7764,81 +7764,81 @@ var Li = _t(Bt, 9, 0), Ni = _t(Bt, 9, 1), Mi = _t(Jt, 5, 0), Di = _t(Jt, 5, 1),
|
|
|
7764
7764
|
t[i] = n & 255, t[i + 1] = n >> 8, t[i + 2] = t[i] ^ 255, t[i + 3] = t[i + 1] ^ 255;
|
|
7765
7765
|
for (var s = 0; s < n; ++s) t[i + s + 4] = r[s];
|
|
7766
7766
|
return (i + 4 + n) * 8;
|
|
7767
|
-
}, "wfblk"),
|
|
7767
|
+
}, "wfblk"), $r = c(function(t, e, r, n, i, s, a, u, h, d, g) {
|
|
7768
7768
|
At(e, g++, r), ++i[256];
|
|
7769
|
-
for (var w =
|
|
7770
|
-
for (var o = 0; o <
|
|
7771
|
-
for (var
|
|
7772
|
-
var I = d + 5 << 3, T = Xt(i, Bt) + Xt(s,
|
|
7769
|
+
for (var w = Le(i, 15), U = w.t, v = w.l, D = Le(s, 15), M = D.t, y = D.l, P = Mr(U), A = P.c, L = P.n, x = Mr(M), C = x.c, H = x.n, j = new at(19), o = 0; o < A.length; ++o) ++j[A[o] & 31];
|
|
7770
|
+
for (var o = 0; o < C.length; ++o) ++j[C[o] & 31];
|
|
7771
|
+
for (var l = Le(j, 7), f = l.t, _ = l.l, m = 19; m > 4 && !f[ye[m - 1]]; --m) ;
|
|
7772
|
+
var I = d + 5 << 3, T = Xt(i, Bt) + Xt(s, Qt) + a, p = Xt(i, U) + Xt(s, M) + a + 14 + 3 * m + Xt(j, f) + 2 * j[16] + 3 * j[17] + 7 * j[18];
|
|
7773
7773
|
if (h >= 0 && I <= T && I <= p) return xr(e, g, t.subarray(h, h + d));
|
|
7774
|
-
var E, S, R,
|
|
7774
|
+
var E, S, R, b;
|
|
7775
7775
|
if (At(e, g, 1 + (p < T)), g += 2, p < T) {
|
|
7776
|
-
E = _t(
|
|
7777
|
-
var
|
|
7778
|
-
At(e, g,
|
|
7779
|
-
for (var o = 0; o < m; ++o) At(e, g + 3 * o, f[
|
|
7776
|
+
E = _t(U, v, 0), S = U, R = _t(M, y, 0), b = M;
|
|
7777
|
+
var O = _t(f, _, 0);
|
|
7778
|
+
At(e, g, L - 257), At(e, g + 5, H - 1), At(e, g + 10, m - 4), g += 14;
|
|
7779
|
+
for (var o = 0; o < m; ++o) At(e, g + 3 * o, f[ye[o]]);
|
|
7780
7780
|
g += 3 * m;
|
|
7781
|
-
for (var B = [A,
|
|
7782
|
-
var
|
|
7783
|
-
At(e, g,
|
|
7781
|
+
for (var B = [A, C], G = 0; G < 2; ++G) for (var F = B[G], o = 0; o < F.length; ++o) {
|
|
7782
|
+
var W = F[o] & 31;
|
|
7783
|
+
At(e, g, O[W]), g += f[W], W > 15 && (At(e, g, F[o] >> 5 & 127), g += F[o] >> 12);
|
|
7784
7784
|
}
|
|
7785
|
-
} else E =
|
|
7786
|
-
for (var o = 0; o <
|
|
7785
|
+
} else E = Oi, S = Bt, R = Di, b = Qt;
|
|
7786
|
+
for (var o = 0; o < u; ++o) {
|
|
7787
7787
|
var N = n[o];
|
|
7788
7788
|
if (N > 255) {
|
|
7789
|
-
var
|
|
7790
|
-
zt(e, g, E[
|
|
7789
|
+
var W = N >> 18 & 31;
|
|
7790
|
+
zt(e, g, E[W + 257]), g += S[W + 257], W > 7 && (At(e, g, N >> 23 & 31), g += se[W]);
|
|
7791
7791
|
var k = N & 31;
|
|
7792
|
-
zt(e, g, R[k]), g +=
|
|
7792
|
+
zt(e, g, R[k]), g += b[k], k > 3 && (zt(e, g, N >> 5 & 8191), g += oe[k]);
|
|
7793
7793
|
} else zt(e, g, E[N]), g += S[N];
|
|
7794
7794
|
}
|
|
7795
7795
|
return zt(e, g, E[256]), g + S[256];
|
|
7796
|
-
}, "wblk"),
|
|
7797
|
-
var a = s.z || t.length,
|
|
7796
|
+
}, "wblk"), Gi = new be([65540, 131080, 131088, 131104, 262176, 1048704, 1048832, 2114560, 2117632]), Gr = new z(0), Hi = c(function(t, e, r, n, i, s) {
|
|
7797
|
+
var a = s.z || t.length, u = new z(n + a + 5 * (1 + Math.ceil(a / 7e3)) + i), h = u.subarray(n, u.length - i), d = s.l, g = (s.r || 0) & 7;
|
|
7798
7798
|
if (e) {
|
|
7799
7799
|
g && (h[0] = s.r >> 3);
|
|
7800
|
-
for (var w =
|
|
7801
|
-
return (t[Z] ^ t[Z + 1] << P ^ t[Z + 2] << A) &
|
|
7802
|
-
}, "hsh"), x = new
|
|
7803
|
-
var I =
|
|
7804
|
-
if (
|
|
7805
|
-
var E = a -
|
|
7800
|
+
for (var w = Gi[e - 1], U = w >> 13, v = w & 8191, D = (1 << r) - 1, M = s.p || new at(32768), y = s.h || new at(D + 1), P = Math.ceil(r / 3), A = 2 * P, L = c(function(Z) {
|
|
7801
|
+
return (t[Z] ^ t[Z + 1] << P ^ t[Z + 2] << A) & D;
|
|
7802
|
+
}, "hsh"), x = new be(25e3), C = new at(288), H = new at(32), j = 0, o = 0, l = s.i || 0, f = 0, _ = s.w || 0, m = 0; l + 2 < a; ++l) {
|
|
7803
|
+
var I = L(l), T = l & 32767, p = y[I];
|
|
7804
|
+
if (M[T] = p, y[I] = T, _ <= l) {
|
|
7805
|
+
var E = a - l;
|
|
7806
7806
|
if ((j > 7e3 || f > 24576) && (E > 423 || !d)) {
|
|
7807
|
-
g =
|
|
7808
|
-
for (var S = 0; S < 286; ++S)
|
|
7807
|
+
g = $r(t, h, 0, x, C, H, o, f, m, l - m, g), f = j = o = 0, m = l;
|
|
7808
|
+
for (var S = 0; S < 286; ++S) C[S] = 0;
|
|
7809
7809
|
for (var S = 0; S < 30; ++S) H[S] = 0;
|
|
7810
7810
|
}
|
|
7811
|
-
var R = 2,
|
|
7812
|
-
if (E > 2 && I ==
|
|
7813
|
-
if (t[
|
|
7814
|
-
for (var N = 0; N <
|
|
7811
|
+
var R = 2, b = 0, O = v, B = T - p & 32767;
|
|
7812
|
+
if (E > 2 && I == L(l - B)) for (var G = Math.min(U, E) - 1, F = Math.min(32767, l), W = Math.min(258, E); B <= F && --O && T != p; ) {
|
|
7813
|
+
if (t[l + R] == t[l + R - B]) {
|
|
7814
|
+
for (var N = 0; N < W && t[l + N] == t[l + N - B]; ++N) ;
|
|
7815
7815
|
if (N > R) {
|
|
7816
|
-
if (R = N,
|
|
7816
|
+
if (R = N, b = B, N > G) break;
|
|
7817
7817
|
for (var k = Math.min(B, N - 2), Y = 0, S = 0; S < k; ++S) {
|
|
7818
|
-
var ht =
|
|
7819
|
-
|
|
7818
|
+
var ht = l - B + S & 32767, yt = M[ht], Ut = ht - yt & 32767;
|
|
7819
|
+
Ut > Y && (Y = Ut, p = ht);
|
|
7820
7820
|
}
|
|
7821
7821
|
}
|
|
7822
7822
|
}
|
|
7823
|
-
T = p, p =
|
|
7823
|
+
T = p, p = M[T], B += T - p & 32767;
|
|
7824
7824
|
}
|
|
7825
|
-
if (
|
|
7826
|
-
x[f++] = 268435456 |
|
|
7827
|
-
var rt =
|
|
7828
|
-
o += se[rt] + oe[dt], ++
|
|
7829
|
-
} else x[f++] = t[
|
|
7825
|
+
if (b) {
|
|
7826
|
+
x[f++] = 268435456 | Ue[R] << 18 | Dr[b];
|
|
7827
|
+
var rt = Ue[R] & 31, dt = Dr[b] & 31;
|
|
7828
|
+
o += se[rt] + oe[dt], ++C[257 + rt], ++H[dt], _ = l + R, ++j;
|
|
7829
|
+
} else x[f++] = t[l], ++C[t[l]];
|
|
7830
7830
|
}
|
|
7831
7831
|
}
|
|
7832
|
-
for (
|
|
7833
|
-
g =
|
|
7832
|
+
for (l = Math.max(l, _); l < a; ++l) x[f++] = t[l], ++C[t[l]];
|
|
7833
|
+
g = $r(t, h, d, x, C, H, o, f, m, l - m, g), d || (s.r = g & 7 | h[g / 8 | 0] << 3, g -= 7, s.h = y, s.p = M, s.i = l, s.w = _);
|
|
7834
7834
|
} else {
|
|
7835
|
-
for (var
|
|
7836
|
-
var X =
|
|
7837
|
-
X >= a && (h[g / 8 | 0] = d, X = a), g = xr(h, g + 1, t.subarray(
|
|
7835
|
+
for (var l = s.w || 0; l < a + d; l += 65535) {
|
|
7836
|
+
var X = l + 65535;
|
|
7837
|
+
X >= a && (h[g / 8 | 0] = d, X = a), g = xr(h, g + 1, t.subarray(l, X));
|
|
7838
7838
|
}
|
|
7839
7839
|
s.i = a;
|
|
7840
7840
|
}
|
|
7841
|
-
return
|
|
7841
|
+
return Jt(u, 0, n + Pe(g) + i);
|
|
7842
7842
|
}, "dflt"), ki = (function() {
|
|
7843
7843
|
for (var t = new Int32Array(256), e = 0; e < 256; ++e) {
|
|
7844
7844
|
for (var r = e, n = 9; --n; ) r = (r & 1 && -306674912) ^ r >>> 1;
|
|
@@ -7873,28 +7873,28 @@ var Li = _t(Bt, 9, 0), Ni = _t(Bt, 9, 1), Mi = _t(Jt, 5, 0), Di = _t(Jt, 5, 1),
|
|
|
7873
7873
|
}, "b8"), et = c(function(t, e, r) {
|
|
7874
7874
|
for (; r; ++e) t[e] = r, r >>>= 8;
|
|
7875
7875
|
}, "wbytes");
|
|
7876
|
-
function
|
|
7876
|
+
function Wi(t, e) {
|
|
7877
7877
|
return Fi(t, e || {}, 0, 0);
|
|
7878
7878
|
}
|
|
7879
|
-
c(
|
|
7880
|
-
function
|
|
7881
|
-
return
|
|
7879
|
+
c(Wi, "deflateSync");
|
|
7880
|
+
function Vi(t, e) {
|
|
7881
|
+
return $i(t, { i: 2 }, e && e.out, e && e.dictionary);
|
|
7882
7882
|
}
|
|
7883
|
-
c(
|
|
7883
|
+
c(Vi, "inflateSync");
|
|
7884
7884
|
var kr = c(function(t, e, r, n) {
|
|
7885
7885
|
for (var i in t) {
|
|
7886
|
-
var s = t[i], a = e + i,
|
|
7887
|
-
Array.isArray(s) && (
|
|
7886
|
+
var s = t[i], a = e + i, u = n;
|
|
7887
|
+
Array.isArray(s) && (u = Hr(n, s[1]), s = s[0]), s instanceof z ? r[a] = [s, u] : (r[a += "/"] = [new z(0), u], kr(s, a, r, n));
|
|
7888
7888
|
}
|
|
7889
|
-
}, "fltn"), jr = typeof TextEncoder < "u" && new TextEncoder(),
|
|
7889
|
+
}, "fltn"), jr = typeof TextEncoder < "u" && new TextEncoder(), De = typeof TextDecoder < "u" && new TextDecoder(), Ki = 0;
|
|
7890
7890
|
try {
|
|
7891
|
-
|
|
7891
|
+
De.decode(Gr, { stream: true }), Ki = 1;
|
|
7892
7892
|
} catch {
|
|
7893
7893
|
}
|
|
7894
7894
|
var qi = c(function(t) {
|
|
7895
7895
|
for (var e = "", r = 0; ; ) {
|
|
7896
7896
|
var n = t[r++], i = (n > 127) + (n > 223) + (n > 239);
|
|
7897
|
-
if (r + i > t.length) return { s: e, r:
|
|
7897
|
+
if (r + i > t.length) return { s: e, r: Jt(t, r - 1) };
|
|
7898
7898
|
i ? i == 3 ? (n = ((n & 15) << 18 | (t[r++] & 63) << 12 | (t[r++] & 63) << 6 | t[r++] & 63) - 65536, e += String.fromCharCode(55296 | n >> 10, 56320 | n & 1023)) : i & 1 ? e += String.fromCharCode((n & 31) << 6 | t[r++] & 63) : e += String.fromCharCode((n & 15) << 12 | (t[r++] & 63) << 6 | t[r++] & 63) : e += String.fromCharCode(n);
|
|
7899
7899
|
}
|
|
7900
7900
|
}, "dutf8");
|
|
@@ -7905,13 +7905,13 @@ function Fr(t, e) {
|
|
|
7905
7905
|
i[s++] = d;
|
|
7906
7906
|
}, "w"), r = 0; r < n; ++r) {
|
|
7907
7907
|
if (s + 5 > i.length) {
|
|
7908
|
-
var
|
|
7909
|
-
|
|
7908
|
+
var u = new z(s + 8 + (n - r << 1));
|
|
7909
|
+
u.set(i), i = u;
|
|
7910
7910
|
}
|
|
7911
7911
|
var h = t.charCodeAt(r);
|
|
7912
7912
|
h < 128 || e ? a(h) : h < 2048 ? (a(192 | h >> 6), a(128 | h & 63)) : h > 55295 && h < 57344 ? (h = 65536 + (h & 1047552) | t.charCodeAt(++r) & 1023, a(240 | h >> 18), a(128 | h >> 12 & 63), a(128 | h >> 6 & 63), a(128 | h & 63)) : (a(224 | h >> 12), a(128 | h >> 6 & 63), a(128 | h & 63));
|
|
7913
7913
|
}
|
|
7914
|
-
return
|
|
7914
|
+
return Jt(i, 0, s);
|
|
7915
7915
|
}
|
|
7916
7916
|
c(Fr, "strToU8");
|
|
7917
7917
|
function Yi(t, e) {
|
|
@@ -7919,36 +7919,36 @@ function Yi(t, e) {
|
|
|
7919
7919
|
for (var r = "", n = 0; n < t.length; n += 16384) r += String.fromCharCode.apply(null, t.subarray(n, n + 16384));
|
|
7920
7920
|
return r;
|
|
7921
7921
|
} else {
|
|
7922
|
-
if (
|
|
7922
|
+
if (De) return De.decode(t);
|
|
7923
7923
|
var i = qi(t), s = i.s, r = i.r;
|
|
7924
7924
|
return r.length && nt(8), s;
|
|
7925
7925
|
}
|
|
7926
7926
|
}
|
|
7927
7927
|
c(Yi, "strFromU8");
|
|
7928
|
-
var
|
|
7928
|
+
var Qi = c(function(t, e) {
|
|
7929
7929
|
return e + 30 + It(t, e + 26) + It(t, e + 28);
|
|
7930
|
-
}, "slzh"),
|
|
7931
|
-
var n = It(t, e + 28), i = Yi(t.subarray(e + 46, e + 46 + n), !(It(t, e + 8) & 2048)), s = e + 46 + n, a = gt(t, e + 20),
|
|
7930
|
+
}, "slzh"), Ji = c(function(t, e, r) {
|
|
7931
|
+
var n = It(t, e + 28), i = Yi(t.subarray(e + 46, e + 46 + n), !(It(t, e + 8) & 2048)), s = e + 46 + n, a = gt(t, e + 20), u = r && a == 4294967295 ? zi(t, s) : [a, gt(t, e + 24), gt(t, e + 42)], h = u[0], d = u[1], g = u[2];
|
|
7932
7932
|
return [It(t, e + 10), h, d, i, s + It(t, e + 30) + It(t, e + 32), g];
|
|
7933
7933
|
}, "zh"), zi = c(function(t, e) {
|
|
7934
7934
|
for (; It(t, e) != 1; e += 4 + It(t, e + 2)) ;
|
|
7935
7935
|
return [Ne(t, e + 12), Ne(t, e + 4), Ne(t, e + 20)];
|
|
7936
|
-
}, "z64e"),
|
|
7936
|
+
}, "z64e"), Me = c(function(t) {
|
|
7937
7937
|
var e = 0;
|
|
7938
7938
|
if (t) for (var r in t) {
|
|
7939
7939
|
var n = t[r].length;
|
|
7940
7940
|
n > 65535 && nt(9), e += n + 4;
|
|
7941
7941
|
}
|
|
7942
7942
|
return e;
|
|
7943
|
-
}, "exfl"),
|
|
7944
|
-
var h = n.length, d = r.extra, g =
|
|
7943
|
+
}, "exfl"), Wr = c(function(t, e, r, n, i, s, a, u) {
|
|
7944
|
+
var h = n.length, d = r.extra, g = u && u.length, w = Me(d);
|
|
7945
7945
|
et(t, e, a != null ? 33639248 : 67324752), e += 4, a != null && (t[e++] = 20, t[e++] = r.os), t[e] = 20, e += 2, t[e++] = r.flag << 1 | (s < 0 && 8), t[e++] = i && 8, t[e++] = r.compression & 255, t[e++] = r.compression >> 8;
|
|
7946
|
-
var
|
|
7947
|
-
if ((v < 0 || v > 119) && nt(10), et(t, e, v << 25 |
|
|
7948
|
-
var
|
|
7949
|
-
et(t, e, +
|
|
7946
|
+
var U = new Date(r.mtime == null ? Date.now() : r.mtime), v = U.getFullYear() - 1980;
|
|
7947
|
+
if ((v < 0 || v > 119) && nt(10), et(t, e, v << 25 | U.getMonth() + 1 << 21 | U.getDate() << 16 | U.getHours() << 11 | U.getMinutes() << 5 | U.getSeconds() >> 1), e += 4, s != -1 && (et(t, e, r.crc), et(t, e + 4, s < 0 ? -s - 2 : s), et(t, e + 8, r.size)), et(t, e + 12, h), et(t, e + 14, w), e += 16, a != null && (et(t, e, g), et(t, e + 6, r.attrs), et(t, e + 10, a), e += 14), t.set(n, e), e += h, w) for (var D in d) {
|
|
7948
|
+
var M = d[D], y = M.length;
|
|
7949
|
+
et(t, e, +D), et(t, e + 2, y), t.set(M, e + 4), e += 4 + y;
|
|
7950
7950
|
}
|
|
7951
|
-
return g && (t.set(
|
|
7951
|
+
return g && (t.set(u, e), e += g), e;
|
|
7952
7952
|
}, "wzh"), Xi = c(function(t, e, r, n, i) {
|
|
7953
7953
|
et(t, e, 101010256), et(t, e + 8, r), et(t, e + 10, r), et(t, e + 12, n), et(t, e + 16, i);
|
|
7954
7954
|
}, "wzf");
|
|
@@ -7958,18 +7958,18 @@ function Zi(t, e) {
|
|
|
7958
7958
|
kr(t, "", r, e);
|
|
7959
7959
|
var i = 0, s = 0;
|
|
7960
7960
|
for (var a in r) {
|
|
7961
|
-
var
|
|
7962
|
-
|
|
7963
|
-
var P = g ?
|
|
7964
|
-
|
|
7961
|
+
var u = r[a], h = u[0], d = u[1], g = d.level == 0 ? 0 : 8, w = Fr(a), U = w.length, v = d.comment, D = v && Fr(v), M = D && D.length, y = Me(d.extra);
|
|
7962
|
+
U > 65535 && nt(11);
|
|
7963
|
+
var P = g ? Wi(h, d) : h, A = P.length, L = ji();
|
|
7964
|
+
L.p(h), n.push(Hr(d, { size: h.length, crc: L.d(), c: P, f: w, m: D, u: U != a.length || D && v.length != M, o: i, compression: g })), i += 30 + U + y + A, s += 76 + 2 * (U + y) + (M || 0) + A;
|
|
7965
7965
|
}
|
|
7966
|
-
for (var x = new z(s + 22),
|
|
7966
|
+
for (var x = new z(s + 22), C = i, H = s - i, j = 0; j < n.length; ++j) {
|
|
7967
7967
|
var w = n[j];
|
|
7968
|
-
|
|
7969
|
-
var o = 30 + w.f.length +
|
|
7970
|
-
x.set(w.c, w.o + o),
|
|
7968
|
+
Wr(x, w.o, w, w.f, w.u, w.c.length);
|
|
7969
|
+
var o = 30 + w.f.length + Me(w.extra);
|
|
7970
|
+
x.set(w.c, w.o + o), Wr(x, i, w, w.f, w.u, w.c.length, w.o, w.m), i += 16 + o + (w.m ? w.m.length : 0);
|
|
7971
7971
|
}
|
|
7972
|
-
return Xi(x, i, n.length, H,
|
|
7972
|
+
return Xi(x, i, n.length, H, C), x;
|
|
7973
7973
|
}
|
|
7974
7974
|
c(Zi, "zipSync");
|
|
7975
7975
|
function ts(t, e) {
|
|
@@ -7978,24 +7978,24 @@ function ts(t, e) {
|
|
|
7978
7978
|
if (!i) return {};
|
|
7979
7979
|
var s = gt(t, n + 16), a = s == 4294967295 || i == 65535;
|
|
7980
7980
|
if (a) {
|
|
7981
|
-
var
|
|
7982
|
-
a = gt(t,
|
|
7981
|
+
var u = gt(t, n - 12);
|
|
7982
|
+
a = gt(t, u) == 101075792, a && (i = gt(t, u + 32), s = gt(t, u + 48));
|
|
7983
7983
|
}
|
|
7984
7984
|
for (var h = 0; h < i; ++h) {
|
|
7985
|
-
var d =
|
|
7986
|
-
s =
|
|
7985
|
+
var d = Ji(t, s, a), g = d[0], w = d[1], U = d[2], v = d[3], D = d[4], M = d[5], y = Qi(t, M);
|
|
7986
|
+
s = D, g ? g == 8 ? r[v] = Vi(t.subarray(y, y + w), { out: new z(U) }) : nt(14, "unknown compression type " + g) : r[v] = Jt(t, y, y + w);
|
|
7987
7987
|
}
|
|
7988
7988
|
return r;
|
|
7989
7989
|
}
|
|
7990
7990
|
c(ts, "unzipSync");
|
|
7991
7991
|
const es = [/^\/$/, /^\*+$/, /^[0-9]+$/], rs = ["/artifact/", "https://", "http://", "*********"], ns = 3;
|
|
7992
|
-
function
|
|
7992
|
+
function Vr(t) {
|
|
7993
7993
|
return t.filter((e) => !(e.length < ns || es.some((r) => r.test(e)) || rs.some((r) => e.includes(r))));
|
|
7994
7994
|
}
|
|
7995
|
-
c(
|
|
7996
|
-
const
|
|
7995
|
+
c(Vr, "filterSensitiveValues");
|
|
7996
|
+
const bt = Symbol.for("@ts-pattern/matcher"), is = Symbol.for("@ts-pattern/isVariadic"), ae = "@ts-pattern/anonymous-select-key", xe = c((t) => !!(t && typeof t == "object"), "r"), ce = c((t) => t && !!t[bt], "i"), St = c((t, e, r) => {
|
|
7997
7997
|
if (ce(t)) {
|
|
7998
|
-
const n = t[
|
|
7998
|
+
const n = t[bt](), { matched: i, selections: s } = n.match(e);
|
|
7999
7999
|
return i && s && Object.keys(s).forEach((a) => r(a, s[a])), i;
|
|
8000
8000
|
}
|
|
8001
8001
|
if (xe(t)) {
|
|
@@ -8004,34 +8004,34 @@ const yt = Symbol.for("@ts-pattern/matcher"), is = Symbol.for("@ts-pattern/isVar
|
|
|
8004
8004
|
if (!Array.isArray(e)) return false;
|
|
8005
8005
|
let n = [], i = [], s = [];
|
|
8006
8006
|
for (const a of t.keys()) {
|
|
8007
|
-
const
|
|
8008
|
-
ce(
|
|
8007
|
+
const u = t[a];
|
|
8008
|
+
ce(u) && u[is] ? s.push(u) : s.length ? i.push(u) : n.push(u);
|
|
8009
8009
|
}
|
|
8010
8010
|
if (s.length) {
|
|
8011
8011
|
if (s.length > 1) throw new Error("Pattern error: Using `...P.array(...)` several times in a single pattern is not allowed.");
|
|
8012
8012
|
if (e.length < n.length + i.length) return false;
|
|
8013
|
-
const a = e.slice(0, n.length),
|
|
8014
|
-
return n.every((d, g) => St(d, a[g], r)) && i.every((d, g) => St(d,
|
|
8013
|
+
const a = e.slice(0, n.length), u = i.length === 0 ? [] : e.slice(-i.length), h = e.slice(n.length, i.length === 0 ? 1 / 0 : -i.length);
|
|
8014
|
+
return n.every((d, g) => St(d, a[g], r)) && i.every((d, g) => St(d, u[g], r)) && (s.length === 0 || St(s[0], h, r));
|
|
8015
8015
|
}
|
|
8016
|
-
return t.length === e.length && t.every((a,
|
|
8016
|
+
return t.length === e.length && t.every((a, u) => St(a, e[u], r));
|
|
8017
8017
|
}
|
|
8018
8018
|
return Reflect.ownKeys(t).every((n) => {
|
|
8019
8019
|
const i = t[n];
|
|
8020
|
-
return (n in e || ce(s = i) && s[
|
|
8020
|
+
return (n in e || ce(s = i) && s[bt]().matcherType === "optional") && St(i, e[n], r);
|
|
8021
8021
|
var s;
|
|
8022
8022
|
});
|
|
8023
8023
|
}
|
|
8024
8024
|
return Object.is(e, t);
|
|
8025
8025
|
}, "o"), Pt = c((t) => {
|
|
8026
8026
|
var e, r, n;
|
|
8027
|
-
return xe(t) ? ce(t) ? (e = (r = (n = t[
|
|
8027
|
+
return xe(t) ? ce(t) ? (e = (r = (n = t[bt]()).getSelectionKeys) == null ? void 0 : r.call(n)) != null ? e : [] : Array.isArray(t) ? Zt(t, Pt) : Zt(Object.values(t), Pt) : [];
|
|
8028
8028
|
}, "s"), Zt = c((t, e) => t.reduce((r, n) => r.concat(e(n)), []), "c");
|
|
8029
8029
|
function ct(t) {
|
|
8030
|
-
return Object.assign(t, { optional: c(() => ss(t), "optional"), and: c((e) => q(t, e), "and"), or: c((e) => os(t, e), "or"), select: c((e) => e === void 0 ?
|
|
8030
|
+
return Object.assign(t, { optional: c(() => ss(t), "optional"), and: c((e) => q(t, e), "and"), or: c((e) => os(t, e), "or"), select: c((e) => e === void 0 ? Kr(t) : Kr(e, t), "select") });
|
|
8031
8031
|
}
|
|
8032
8032
|
c(ct, "a");
|
|
8033
8033
|
function ss(t) {
|
|
8034
|
-
return ct({ [
|
|
8034
|
+
return ct({ [bt]: () => ({ match: c((e) => {
|
|
8035
8035
|
let r = {};
|
|
8036
8036
|
const n = c((i, s) => {
|
|
8037
8037
|
r[i] = s;
|
|
@@ -8041,7 +8041,7 @@ function ss(t) {
|
|
|
8041
8041
|
}
|
|
8042
8042
|
c(ss, "h");
|
|
8043
8043
|
function q(...t) {
|
|
8044
|
-
return ct({ [
|
|
8044
|
+
return ct({ [bt]: () => ({ match: c((e) => {
|
|
8045
8045
|
let r = {};
|
|
8046
8046
|
const n = c((i, s) => {
|
|
8047
8047
|
r[i] = s;
|
|
@@ -8051,7 +8051,7 @@ function q(...t) {
|
|
|
8051
8051
|
}
|
|
8052
8052
|
c(q, "d");
|
|
8053
8053
|
function os(...t) {
|
|
8054
|
-
return ct({ [
|
|
8054
|
+
return ct({ [bt]: () => ({ match: c((e) => {
|
|
8055
8055
|
let r = {};
|
|
8056
8056
|
const n = c((i, s) => {
|
|
8057
8057
|
r[i] = s;
|
|
@@ -8060,20 +8060,20 @@ function os(...t) {
|
|
|
8060
8060
|
}, "match"), getSelectionKeys: c(() => Zt(t, Pt), "getSelectionKeys"), matcherType: "or" }) });
|
|
8061
8061
|
}
|
|
8062
8062
|
c(os, "y");
|
|
8063
|
-
function
|
|
8064
|
-
return { [
|
|
8063
|
+
function V(t) {
|
|
8064
|
+
return { [bt]: () => ({ match: c((e) => ({ matched: !!t(e) }), "match") }) };
|
|
8065
8065
|
}
|
|
8066
|
-
c(
|
|
8067
|
-
function
|
|
8066
|
+
c(V, "p");
|
|
8067
|
+
function Kr(...t) {
|
|
8068
8068
|
const e = typeof t[0] == "string" ? t[0] : void 0, r = t.length === 2 ? t[1] : typeof t[0] == "string" ? void 0 : t[0];
|
|
8069
|
-
return ct({ [
|
|
8069
|
+
return ct({ [bt]: () => ({ match: c((n) => {
|
|
8070
8070
|
let i = { [e ?? ae]: n };
|
|
8071
8071
|
return { matched: r === void 0 || St(r, n, (s, a) => {
|
|
8072
8072
|
i[s] = a;
|
|
8073
8073
|
}), selections: i };
|
|
8074
8074
|
}, "match"), getSelectionKeys: c(() => [e ?? ae].concat(r === void 0 ? [] : Pt(r)), "getSelectionKeys") }) });
|
|
8075
8075
|
}
|
|
8076
|
-
c(
|
|
8076
|
+
c(Kr, "v");
|
|
8077
8077
|
function qr(t) {
|
|
8078
8078
|
return true;
|
|
8079
8079
|
}
|
|
@@ -8082,38 +8082,38 @@ function Rt(t) {
|
|
|
8082
8082
|
return typeof t == "number";
|
|
8083
8083
|
}
|
|
8084
8084
|
c(Rt, "w");
|
|
8085
|
-
function
|
|
8085
|
+
function Lt(t) {
|
|
8086
8086
|
return typeof t == "string";
|
|
8087
8087
|
}
|
|
8088
|
-
c(
|
|
8089
|
-
function
|
|
8088
|
+
c(Lt, "S");
|
|
8089
|
+
function Ot(t) {
|
|
8090
8090
|
return typeof t == "bigint";
|
|
8091
8091
|
}
|
|
8092
|
-
c(
|
|
8092
|
+
c(Ot, "j"), ct(V(qr)), ct(V(qr));
|
|
8093
8093
|
const Nt = c((t) => Object.assign(ct(t), { startsWith: c((e) => {
|
|
8094
|
-
return Nt(q(t, (r = e,
|
|
8094
|
+
return Nt(q(t, (r = e, V((n) => Lt(n) && n.startsWith(r)))));
|
|
8095
8095
|
var r;
|
|
8096
8096
|
}, "startsWith"), endsWith: c((e) => {
|
|
8097
|
-
return Nt(q(t, (r = e,
|
|
8097
|
+
return Nt(q(t, (r = e, V((n) => Lt(n) && n.endsWith(r)))));
|
|
8098
8098
|
var r;
|
|
8099
|
-
}, "endsWith"), minLength: c((e) => Nt(q(t, ((r) =>
|
|
8100
|
-
return Nt(q(t, (r = e,
|
|
8099
|
+
}, "endsWith"), minLength: c((e) => Nt(q(t, ((r) => V((n) => Lt(n) && n.length >= r))(e))), "minLength"), length: c((e) => Nt(q(t, ((r) => V((n) => Lt(n) && n.length === r))(e))), "length"), maxLength: c((e) => Nt(q(t, ((r) => V((n) => Lt(n) && n.length <= r))(e))), "maxLength"), includes: c((e) => {
|
|
8100
|
+
return Nt(q(t, (r = e, V((n) => Lt(n) && n.includes(r)))));
|
|
8101
8101
|
var r;
|
|
8102
8102
|
}, "includes"), regex: c((e) => {
|
|
8103
|
-
return Nt(q(t, (r = e,
|
|
8103
|
+
return Nt(q(t, (r = e, V((n) => Lt(n) && !!n.match(r)))));
|
|
8104
8104
|
var r;
|
|
8105
8105
|
}, "regex") }), "x");
|
|
8106
|
-
Nt(
|
|
8107
|
-
const Tt = c((t) => Object.assign(ct(t), { between: c((e, r) => Tt(q(t, ((n, i) =>
|
|
8108
|
-
Tt(
|
|
8109
|
-
const
|
|
8110
|
-
|
|
8106
|
+
Nt(V(Lt));
|
|
8107
|
+
const Tt = c((t) => Object.assign(ct(t), { between: c((e, r) => Tt(q(t, ((n, i) => V((s) => Rt(s) && n <= s && i >= s))(e, r))), "between"), lt: c((e) => Tt(q(t, ((r) => V((n) => Rt(n) && n < r))(e))), "lt"), gt: c((e) => Tt(q(t, ((r) => V((n) => Rt(n) && n > r))(e))), "gt"), lte: c((e) => Tt(q(t, ((r) => V((n) => Rt(n) && n <= r))(e))), "lte"), gte: c((e) => Tt(q(t, ((r) => V((n) => Rt(n) && n >= r))(e))), "gte"), int: c(() => Tt(q(t, V((e) => Rt(e) && Number.isInteger(e)))), "int"), finite: c(() => Tt(q(t, V((e) => Rt(e) && Number.isFinite(e)))), "finite"), positive: c(() => Tt(q(t, V((e) => Rt(e) && e > 0))), "positive"), negative: c(() => Tt(q(t, V((e) => Rt(e) && e < 0))), "negative") }), "N");
|
|
8108
|
+
Tt(V(Rt));
|
|
8109
|
+
const Dt = c((t) => Object.assign(ct(t), { between: c((e, r) => Dt(q(t, ((n, i) => V((s) => Ot(s) && n <= s && i >= s))(e, r))), "between"), lt: c((e) => Dt(q(t, ((r) => V((n) => Ot(n) && n < r))(e))), "lt"), gt: c((e) => Dt(q(t, ((r) => V((n) => Ot(n) && n > r))(e))), "gt"), lte: c((e) => Dt(q(t, ((r) => V((n) => Ot(n) && n <= r))(e))), "lte"), gte: c((e) => Dt(q(t, ((r) => V((n) => Ot(n) && n >= r))(e))), "gte"), positive: c(() => Dt(q(t, V((e) => Ot(e) && e > 0))), "positive"), negative: c(() => Dt(q(t, V((e) => Ot(e) && e < 0))), "negative") }), "k");
|
|
8110
|
+
Dt(V(Ot)), ct(V(function(t) {
|
|
8111
8111
|
return typeof t == "boolean";
|
|
8112
|
-
})), ct(
|
|
8112
|
+
})), ct(V(function(t) {
|
|
8113
8113
|
return typeof t == "symbol";
|
|
8114
|
-
})), ct(
|
|
8114
|
+
})), ct(V(function(t) {
|
|
8115
8115
|
return t == null;
|
|
8116
|
-
})), ct(
|
|
8116
|
+
})), ct(V(function(t) {
|
|
8117
8117
|
return t != null;
|
|
8118
8118
|
}));
|
|
8119
8119
|
class as extends Error {
|
|
@@ -8130,9 +8130,9 @@ class as extends Error {
|
|
|
8130
8130
|
super(`Pattern matching error: no pattern matches value ${r}`), this.input = void 0, this.input = e;
|
|
8131
8131
|
}
|
|
8132
8132
|
}
|
|
8133
|
-
const
|
|
8133
|
+
const $e = { matched: false, value: void 0 };
|
|
8134
8134
|
function cs(t) {
|
|
8135
|
-
return new ge(t,
|
|
8135
|
+
return new ge(t, $e);
|
|
8136
8136
|
}
|
|
8137
8137
|
c(cs, "M");
|
|
8138
8138
|
class ge {
|
|
@@ -8148,20 +8148,20 @@ class ge {
|
|
|
8148
8148
|
let i;
|
|
8149
8149
|
e.length === 3 && typeof e[1] == "function" ? i = e[1] : e.length > 2 && n.push(...e.slice(1, e.length - 1));
|
|
8150
8150
|
let s = false, a = {};
|
|
8151
|
-
const
|
|
8151
|
+
const u = c((d, g) => {
|
|
8152
8152
|
s = true, a[d] = g;
|
|
8153
|
-
}, "u2"), h = !n.some((d) => St(d, this.input,
|
|
8153
|
+
}, "u2"), h = !n.some((d) => St(d, this.input, u)) || i && !i(this.input) ? $e : { matched: true, value: r(s ? ae in a ? a[ae] : a : this.input, this.input) };
|
|
8154
8154
|
return new ge(this.input, h);
|
|
8155
8155
|
}
|
|
8156
8156
|
when(e, r) {
|
|
8157
8157
|
if (this.state.matched) return this;
|
|
8158
8158
|
const n = !!e(this.input);
|
|
8159
|
-
return new ge(this.input, n ? { matched: true, value: r(this.input, this.input) } :
|
|
8159
|
+
return new ge(this.input, n ? { matched: true, value: r(this.input, this.input) } : $e);
|
|
8160
8160
|
}
|
|
8161
8161
|
otherwise(e) {
|
|
8162
8162
|
return this.state.matched ? this.state.value : e(this.input);
|
|
8163
8163
|
}
|
|
8164
|
-
exhaustive(e =
|
|
8164
|
+
exhaustive(e = ls) {
|
|
8165
8165
|
return this.state.matched ? this.state.value : e(this.input);
|
|
8166
8166
|
}
|
|
8167
8167
|
run() {
|
|
@@ -8174,13 +8174,13 @@ class ge {
|
|
|
8174
8174
|
return this;
|
|
8175
8175
|
}
|
|
8176
8176
|
}
|
|
8177
|
-
function
|
|
8177
|
+
function ls(t) {
|
|
8178
8178
|
throw new as(t);
|
|
8179
8179
|
}
|
|
8180
|
-
c(
|
|
8181
|
-
const
|
|
8180
|
+
c(ls, "F");
|
|
8181
|
+
const us = "[REDACTED]", fs = /* @__PURE__ */ new Set(["sha1", "_sha1", "pageref", "downloadsPath", "tracesDir", "pageId"]);
|
|
8182
8182
|
function ot({ sensitiveValues: t, str: e }) {
|
|
8183
|
-
return t.reduce((r, n) => r.replaceAll(n,
|
|
8183
|
+
return t.reduce((r, n) => r.replaceAll(n, us), e);
|
|
8184
8184
|
}
|
|
8185
8185
|
c(ot, "scrubString");
|
|
8186
8186
|
function hs(t) {
|
|
@@ -8188,76 +8188,76 @@ function hs(t) {
|
|
|
8188
8188
|
}
|
|
8189
8189
|
c(hs, "isRecord");
|
|
8190
8190
|
function te({ sensitiveValues: t, value: e }) {
|
|
8191
|
-
return typeof e == "string" ? ot({ sensitiveValues: t, str: e }) : Array.isArray(e) ? e.map((r) => te({ sensitiveValues: t, value: r })) : hs(e) ?
|
|
8191
|
+
return typeof e == "string" ? ot({ sensitiveValues: t, str: e }) : Array.isArray(e) ? e.map((r) => te({ sensitiveValues: t, value: r })) : hs(e) ? $t({ obj: e, sensitiveValues: t }) : e;
|
|
8192
8192
|
}
|
|
8193
8193
|
c(te, "scrubValue");
|
|
8194
8194
|
function ds(t) {
|
|
8195
8195
|
return fs.has(t) ? true : t.toLowerCase().endsWith("sha1");
|
|
8196
8196
|
}
|
|
8197
8197
|
c(ds, "shouldPreserveKey");
|
|
8198
|
-
function
|
|
8198
|
+
function $t({ obj: t, sensitiveValues: e }) {
|
|
8199
8199
|
return Object.fromEntries(Object.entries(t).map(([r, n]) => [r, ds(r) ? n : te({ sensitiveValues: e, value: n })]));
|
|
8200
8200
|
}
|
|
8201
|
-
c(
|
|
8201
|
+
c($t, "scrubObject");
|
|
8202
8202
|
function Yr({ error: t, sensitiveValues: e }) {
|
|
8203
8203
|
return t ? { ...t, message: ot({ sensitiveValues: e, str: t.message }) } : void 0;
|
|
8204
8204
|
}
|
|
8205
8205
|
c(Yr, "scrubError");
|
|
8206
8206
|
function ps({ event: t, sensitiveValues: e }) {
|
|
8207
|
-
return cs(t).with({ type: "console" }, (r) => ({ ...r, args: r.args?.map((n) => ({ ...n, preview: ot({ sensitiveValues: e, str: n.preview }), value: te({ sensitiveValues: e, value: n.value }) })), text: ot({ sensitiveValues: e, str: r.text }) })).with({ type: "before" }, (r) => ({ ...r, params:
|
|
8207
|
+
return cs(t).with({ type: "console" }, (r) => ({ ...r, args: r.args?.map((n) => ({ ...n, preview: ot({ sensitiveValues: e, str: n.preview }), value: te({ sensitiveValues: e, value: n.value }) })), text: ot({ sensitiveValues: e, str: r.text }) })).with({ type: "before" }, (r) => ({ ...r, params: $t({ obj: r.params, sensitiveValues: e }), title: r.title ? ot({ sensitiveValues: e, str: r.title }) : void 0 })).with({ type: "after" }, (r) => ({ ...r, error: Yr({ error: r.error, sensitiveValues: e }), result: r.result !== void 0 ? te({ sensitiveValues: e, value: r.result }) : void 0 })).with({ type: "action" }, (r) => ({ ...r, error: Yr({ error: r.error, sensitiveValues: e }), params: $t({ obj: r.params, sensitiveValues: e }), result: r.result !== void 0 ? te({ sensitiveValues: e, value: r.result }) : void 0, title: r.title ? ot({ sensitiveValues: e, str: r.title }) : void 0 })).with({ type: "event" }, (r) => ({ ...r, params: $t({ obj: r.params, sensitiveValues: e }) })).with({ type: "stdout" }, { type: "stderr" }, (r) => ({ ...r, text: r.text !== void 0 ? ot({ sensitiveValues: e, str: r.text }) : void 0 })).with({ type: "error" }, (r) => ({ ...r, message: ot({ sensitiveValues: e, str: r.message }) })).with({ type: "log" }, (r) => ({ ...r, message: ot({ sensitiveValues: e, str: r.message }) })).with({ type: "context-options" }, (r) => ({ ...r, options: $t({ obj: r.options, sensitiveValues: e }), title: r.title ? ot({ sensitiveValues: e, str: r.title }) : void 0 })).with({ type: "frame-snapshot" }, (r) => ({ ...r, snapshot: $t({ obj: r.snapshot, sensitiveValues: e }) })).with({ type: "resource-snapshot" }, (r) => ({ ...r, snapshot: $t({ obj: r.snapshot, sensitiveValues: e }) })).with({ type: "screencast-frame" }, { type: "input" }, (r) => r).exhaustive();
|
|
8208
8208
|
}
|
|
8209
8209
|
c(ps, "scrubTraceEvent");
|
|
8210
8210
|
function ms({ content: t, sensitiveValues: e }) {
|
|
8211
8211
|
const r = new TextDecoder$1(), n = new TextEncoder$1(), a = r.decode(t).split(`
|
|
8212
|
-
`).map((
|
|
8213
|
-
if (!
|
|
8212
|
+
`).map((u) => {
|
|
8213
|
+
if (!u.trim()) return u;
|
|
8214
8214
|
try {
|
|
8215
|
-
const h = JSON.parse(
|
|
8215
|
+
const h = JSON.parse(u), d = ps({ event: h, sensitiveValues: e });
|
|
8216
8216
|
return JSON.stringify(d);
|
|
8217
8217
|
} catch {
|
|
8218
|
-
return ot({ sensitiveValues: e, str:
|
|
8218
|
+
return ot({ sensitiveValues: e, str: u });
|
|
8219
8219
|
}
|
|
8220
8220
|
});
|
|
8221
8221
|
return n.encode(a.join(`
|
|
8222
8222
|
`));
|
|
8223
8223
|
}
|
|
8224
8224
|
c(ms, "scrubJsonLinesFile");
|
|
8225
|
-
function
|
|
8225
|
+
function Qr({ content: t, sensitiveValues: e }) {
|
|
8226
8226
|
const r = new TextDecoder$1(), n = new TextEncoder$1(), i = ot({ sensitiveValues: e, str: r.decode(t) });
|
|
8227
8227
|
return n.encode(i);
|
|
8228
8228
|
}
|
|
8229
|
-
c(
|
|
8230
|
-
async function
|
|
8231
|
-
const r =
|
|
8229
|
+
c(Qr, "scrubTextFile");
|
|
8230
|
+
async function Ge({ sensitiveValues: t, traceBuffer: e }) {
|
|
8231
|
+
const r = Vr(t);
|
|
8232
8232
|
if (r.length === 0) return new Uint8Array(e);
|
|
8233
|
-
const n = [...r].sort((h, d) => d.length - h.length), i = ts(new Uint8Array(e)), s = Object.entries(i), a = await Promise.all(s.map(async ([h, d]) => [h, await gs({ content: d, filename: h, sensitiveValues: n })])),
|
|
8234
|
-
return Zi(
|
|
8233
|
+
const n = [...r].sort((h, d) => d.length - h.length), i = ts(new Uint8Array(e)), s = Object.entries(i), a = await Promise.all(s.map(async ([h, d]) => [h, await gs({ content: d, filename: h, sensitiveValues: n })])), u = Object.fromEntries(a);
|
|
8234
|
+
return Zi(u);
|
|
8235
8235
|
}
|
|
8236
|
-
c(
|
|
8236
|
+
c(Ge, "scrubTrace");
|
|
8237
8237
|
async function gs({ content: t, filename: e, sensitiveValues: r }) {
|
|
8238
8238
|
const n = e.toLowerCase();
|
|
8239
|
-
return n.endsWith(".trace") || n.endsWith(".network") ? ms({ content: t, sensitiveValues: r }) : n.endsWith(".html") || n.endsWith(".dat") || n.endsWith(".json") ?
|
|
8239
|
+
return n.endsWith(".trace") || n.endsWith(".network") ? ms({ content: t, sensitiveValues: r }) : n.endsWith(".html") || n.endsWith(".dat") || n.endsWith(".json") ? Qr({ content: t, sensitiveValues: r }) : n.startsWith("resources/") ? Es({ content: t, sensitiveValues: r }) : t;
|
|
8240
8240
|
}
|
|
8241
8241
|
c(gs, "scrubFile");
|
|
8242
8242
|
async function Es({ content: t, sensitiveValues: e }) {
|
|
8243
|
-
return await Pi.isBinaryFile(Buffer.from(t)) ? t :
|
|
8243
|
+
return await Pi.isBinaryFile(Buffer.from(t)) ? t : Qr({ content: t, sensitiveValues: e });
|
|
8244
8244
|
}
|
|
8245
8245
|
c(Es, "scrubResourceFile");
|
|
8246
8246
|
async function _s({ sensitiveValues: t, tracePath: e }) {
|
|
8247
8247
|
const r = [], n = createReadStream(e);
|
|
8248
8248
|
for await (const s of n) r.push(Uint8Array.from(s));
|
|
8249
8249
|
const i = new Uint8Array(Buffer.concat(r));
|
|
8250
|
-
return
|
|
8250
|
+
return Ge({ sensitiveValues: t, traceBuffer: i });
|
|
8251
8251
|
}
|
|
8252
8252
|
c(_s, "scrubTraceFromPath");
|
|
8253
8253
|
async function Is({ sensitiveValues: t, traceFd: e, tracePath: r }) {
|
|
8254
8254
|
const n = [], i = createReadStream(r, { autoClose: true, fd: e });
|
|
8255
8255
|
for await (const a of i) n.push(Uint8Array.from(a));
|
|
8256
8256
|
const s = new Uint8Array(Buffer.concat(n));
|
|
8257
|
-
return
|
|
8257
|
+
return Ge({ sensitiveValues: t, traceBuffer: s });
|
|
8258
8258
|
}
|
|
8259
8259
|
c(Is, "scrubTraceFromFd");
|
|
8260
|
-
const
|
|
8260
|
+
const Jr = { AUTHENTICATION_FAILED: 1008 }, Ss = 2e4, Rs = 5e4, Ts = 3e4;
|
|
8261
8261
|
class ws {
|
|
8262
8262
|
static {
|
|
8263
8263
|
c(this, "WebSocketClient");
|
|
@@ -8281,8 +8281,8 @@ class ws {
|
|
|
8281
8281
|
authenticationFailed = false;
|
|
8282
8282
|
pingIntervalTimer;
|
|
8283
8283
|
lastPongAt = 0;
|
|
8284
|
-
constructor({ apiKey: e, cliVersion: r, maxBufferSize: n = 1e3, maxReconnectAttempts: i = 3, onError: s, onMessage: a, projectId:
|
|
8285
|
-
this.url = g, this.apiKey = e, this.projectId =
|
|
8284
|
+
constructor({ apiKey: e, cliVersion: r, maxBufferSize: n = 1e3, maxReconnectAttempts: i = 3, onError: s, onMessage: a, projectId: u, reconnectDelay: h = 2e3, source: d, url: g }) {
|
|
8285
|
+
this.url = g, this.apiKey = e, this.projectId = u, this.source = d, this.cliVersion = r, this.maxBufferSize = n, this.reconnectDelay = h, this.maxReconnectAttempts = i, this.onMessage = a, this.onError = s, this.connect();
|
|
8286
8286
|
}
|
|
8287
8287
|
connect() {
|
|
8288
8288
|
try {
|
|
@@ -8296,7 +8296,7 @@ class ws {
|
|
|
8296
8296
|
} catch {
|
|
8297
8297
|
}
|
|
8298
8298
|
}), this.socket.on("close", (r, n) => {
|
|
8299
|
-
this.isAuthenticated = false, this.clearPingInterval(), r ===
|
|
8299
|
+
this.isAuthenticated = false, this.clearPingInterval(), r === Jr.AUTHENTICATION_FAILED && (this.authenticationFailed = true, this.onError && this.onError({ code: r, message: n.toString() || "Authentication failed", reason: n.toString() })), !this.isManualClose && !this.authenticationFailed && this.reconnectAttempts < this.maxReconnectAttempts && this.scheduleReconnect();
|
|
8300
8300
|
}), this.socket.on("error", () => {
|
|
8301
8301
|
});
|
|
8302
8302
|
} catch {
|
|
@@ -8378,16 +8378,16 @@ function ee(t) {
|
|
|
8378
8378
|
return t ? /^(?:refs\/heads\/)?(?<branch>.+)$/i.exec(t)[1] : void 0;
|
|
8379
8379
|
}
|
|
8380
8380
|
c(ee, "parseBranch");
|
|
8381
|
-
var
|
|
8381
|
+
var bs = { detect({ env: t }) {
|
|
8382
8382
|
return !!t.BUILD_BUILDURI;
|
|
8383
8383
|
}, configuration({ env: t }) {
|
|
8384
8384
|
const e = t.SYSTEM_PULLREQUEST_PULLREQUESTID, r = !!e;
|
|
8385
8385
|
return { name: "Azure Pipelines", service: "azurePipelines", commit: t.BUILD_SOURCEVERSION, build: t.BUILD_BUILDNUMBER, branch: ee(r ? t.SYSTEM_PULLREQUEST_TARGETBRANCH : t.BUILD_SOURCEBRANCH), pr: e, isPr: r, prBranch: ee(r ? t.SYSTEM_PULLREQUEST_SOURCEBRANCH : void 0), root: t.BUILD_REPOSITORY_LOCALPATH };
|
|
8386
|
-
} },
|
|
8386
|
+
} }, ys = { detect({ env: t }) {
|
|
8387
8387
|
return !!t.bamboo_agentId;
|
|
8388
8388
|
}, configuration({ env: t }) {
|
|
8389
8389
|
return { name: "Bamboo", service: "bamboo", commit: t.bamboo_planRepository_1_revision, build: t.bamboo_buildNumber, buildUrl: t.bamboo_buildResultsUrl, branch: t.bamboo_planRepository_1_branchName, job: t.bamboo_buildKey, root: t.bamboo_build_working_directory };
|
|
8390
|
-
} },
|
|
8390
|
+
} }, Us = { detect({ env: t }) {
|
|
8391
8391
|
return !!t.BITBUCKET_BUILD_NUMBER;
|
|
8392
8392
|
}, configuration({ env: t }) {
|
|
8393
8393
|
return { name: "Bitbucket Pipelines", service: "bitbucket", commit: t.BITBUCKET_COMMIT, tag: t.BITBUCKET_TAG, build: t.BITBUCKET_BUILD_NUMBER, buildUrl: `https://bitbucket.org/${t.BITBUCKET_REPO_FULL_NAME}/addon/pipelines/home#!/results/${t.BITBUCKET_BUILD_NUMBER}`, branch: t.BITBUCKET_BRANCH, slug: t.BITBUCKET_REPO_FULL_NAME, root: t.BITBUCKET_CLONE_DIR };
|
|
@@ -8396,33 +8396,33 @@ var ys = { detect({ env: t }) {
|
|
|
8396
8396
|
}, configuration({ env: t }) {
|
|
8397
8397
|
const e = t.BITRISE_PULL_REQUEST === "false" ? void 0 : t.BITRISE_PULL_REQUEST, r = !!e;
|
|
8398
8398
|
return { name: "Bitrise", service: "bitrise", commit: t.BITRISE_GIT_COMMIT, tag: t.BITRISE_GIT_TAG, build: t.BITRISE_BUILD_NUMBER, buildUrl: t.BITRISE_BUILD_URL, branch: r ? t.BITRISEIO_GIT_BRANCH_DEST : t.BITRISE_GIT_BRANCH, pr: e, isPr: r, prBranch: r ? t.BITRISE_GIT_BRANCH : void 0, slug: t.BITRISE_APP_SLUG };
|
|
8399
|
-
} },
|
|
8399
|
+
} }, Cs = { detect({ env: t }) {
|
|
8400
8400
|
return !!t.BUDDY_WORKSPACE_ID;
|
|
8401
8401
|
}, configuration({ env: t }) {
|
|
8402
8402
|
const e = zr(t.BUDDY_EXECUTION_PULL_REQUEST_ID), r = !!e;
|
|
8403
8403
|
return { name: "Buddy", service: "buddy", commit: t.BUDDY_EXECUTION_REVISION, tag: t.BUDDY_EXECUTION_TAG, build: t.BUDDY_EXECUTION_ID, buildUrl: t.BUDDY_EXECUTION_URL, branch: r ? t.BUDDY_EXECUTION_PULL_REQUEST_HEAD_BRANCH : t.BUDDY_EXECUTION_BRANCH, pr: e, isPr: r, slug: t.BUDDY_REPO_SLUG };
|
|
8404
|
-
} },
|
|
8404
|
+
} }, Gt = { exports: {} }, He, Xr;
|
|
8405
8405
|
function Bs() {
|
|
8406
8406
|
if (Xr) return He;
|
|
8407
8407
|
Xr = 1, He = n, n.sync = i;
|
|
8408
|
-
var t =
|
|
8408
|
+
var t = Wt;
|
|
8409
8409
|
function e(s, a) {
|
|
8410
|
-
var
|
|
8411
|
-
if (!
|
|
8412
|
-
for (var h = 0; h <
|
|
8413
|
-
var d =
|
|
8410
|
+
var u = a.pathExt !== void 0 ? a.pathExt : process.env.PATHEXT;
|
|
8411
|
+
if (!u || (u = u.split(";"), u.indexOf("") !== -1)) return true;
|
|
8412
|
+
for (var h = 0; h < u.length; h++) {
|
|
8413
|
+
var d = u[h].toLowerCase();
|
|
8414
8414
|
if (d && s.substr(-d.length).toLowerCase() === d) return true;
|
|
8415
8415
|
}
|
|
8416
8416
|
return false;
|
|
8417
8417
|
}
|
|
8418
8418
|
c(e, "checkPathExt");
|
|
8419
|
-
function r(s, a,
|
|
8420
|
-
return !s.isSymbolicLink() && !s.isFile() ? false : e(a,
|
|
8419
|
+
function r(s, a, u) {
|
|
8420
|
+
return !s.isSymbolicLink() && !s.isFile() ? false : e(a, u);
|
|
8421
8421
|
}
|
|
8422
8422
|
c(r, "checkStat");
|
|
8423
|
-
function n(s, a,
|
|
8423
|
+
function n(s, a, u) {
|
|
8424
8424
|
t.stat(s, function(h, d) {
|
|
8425
|
-
|
|
8425
|
+
u(h, h ? false : r(d, s, a));
|
|
8426
8426
|
});
|
|
8427
8427
|
}
|
|
8428
8428
|
c(n, "isexe");
|
|
@@ -8436,10 +8436,10 @@ var ke, Zr;
|
|
|
8436
8436
|
function Ps() {
|
|
8437
8437
|
if (Zr) return ke;
|
|
8438
8438
|
Zr = 1, ke = e, e.sync = r;
|
|
8439
|
-
var t =
|
|
8440
|
-
function e(s, a,
|
|
8439
|
+
var t = Wt;
|
|
8440
|
+
function e(s, a, u) {
|
|
8441
8441
|
t.stat(s, function(h, d) {
|
|
8442
|
-
|
|
8442
|
+
u(h, h ? false : n(d, a));
|
|
8443
8443
|
});
|
|
8444
8444
|
}
|
|
8445
8445
|
c(e, "isexe");
|
|
@@ -8452,29 +8452,29 @@ function Ps() {
|
|
|
8452
8452
|
}
|
|
8453
8453
|
c(n, "checkStat");
|
|
8454
8454
|
function i(s, a) {
|
|
8455
|
-
var
|
|
8456
|
-
return
|
|
8455
|
+
var u = s.mode, h = s.uid, d = s.gid, g = a.uid !== void 0 ? a.uid : process.getuid && process.getuid(), w = a.gid !== void 0 ? a.gid : process.getgid && process.getgid(), U = parseInt("100", 8), v = parseInt("010", 8), D = parseInt("001", 8), M = U | v, y = u & D || u & v && d === w || u & U && h === g || u & M && g === 0;
|
|
8456
|
+
return y;
|
|
8457
8457
|
}
|
|
8458
8458
|
return c(i, "checkMode"), ke;
|
|
8459
8459
|
}
|
|
8460
8460
|
c(Ps, "requireMode");
|
|
8461
8461
|
var je, tn;
|
|
8462
|
-
function
|
|
8462
|
+
function Ls() {
|
|
8463
8463
|
if (tn) return je;
|
|
8464
8464
|
tn = 1;
|
|
8465
8465
|
var t;
|
|
8466
|
-
process.platform === "win32" ||
|
|
8466
|
+
process.platform === "win32" || Ci.TESTING_WINDOWS ? t = Bs() : t = Ps(), je = e, e.sync = r;
|
|
8467
8467
|
function e(n, i, s) {
|
|
8468
8468
|
if (typeof i == "function" && (s = i, i = {}), !s) {
|
|
8469
8469
|
if (typeof Promise != "function") throw new TypeError("callback not provided");
|
|
8470
|
-
return new Promise(function(a,
|
|
8470
|
+
return new Promise(function(a, u) {
|
|
8471
8471
|
e(n, i || {}, function(h, d) {
|
|
8472
|
-
h ?
|
|
8472
|
+
h ? u(h) : a(d);
|
|
8473
8473
|
});
|
|
8474
8474
|
});
|
|
8475
8475
|
}
|
|
8476
|
-
t(n, i || {}, function(a,
|
|
8477
|
-
a && (a.code === "EACCES" || i && i.ignoreErrors) && (a = null,
|
|
8476
|
+
t(n, i || {}, function(a, u) {
|
|
8477
|
+
a && (a.code === "EACCES" || i && i.ignoreErrors) && (a = null, u = false), s(a, u);
|
|
8478
8478
|
});
|
|
8479
8479
|
}
|
|
8480
8480
|
c(e, "isexe");
|
|
@@ -8488,39 +8488,39 @@ function Os() {
|
|
|
8488
8488
|
}
|
|
8489
8489
|
return c(r, "sync"), je;
|
|
8490
8490
|
}
|
|
8491
|
-
c(
|
|
8491
|
+
c(Ls, "requireIsexe");
|
|
8492
8492
|
var Fe, en;
|
|
8493
|
-
function
|
|
8493
|
+
function Os() {
|
|
8494
8494
|
if (en) return Fe;
|
|
8495
8495
|
en = 1;
|
|
8496
|
-
const t = process.platform === "win32" || process.env.OSTYPE === "cygwin" || process.env.OSTYPE === "msys", e =
|
|
8497
|
-
const g = d.colon || r, w = h.match(/\//) || t && h.match(/\\/) ? [""] : [...t ? [process.cwd()] : [], ...(d.path || process.env.PATH || "").split(g)],
|
|
8498
|
-
return t && h.indexOf(".") !== -1 && v[0] !== "" && v.unshift(""), { pathEnv: w, pathExt: v, pathExtExe:
|
|
8496
|
+
const t = process.platform === "win32" || process.env.OSTYPE === "cygwin" || process.env.OSTYPE === "msys", e = Vt, r = t ? ";" : ":", n = Ls(), i = c((h) => Object.assign(new Error(`not found: ${h}`), { code: "ENOENT" }), "getNotFoundError"), s = c((h, d) => {
|
|
8497
|
+
const g = d.colon || r, w = h.match(/\//) || t && h.match(/\\/) ? [""] : [...t ? [process.cwd()] : [], ...(d.path || process.env.PATH || "").split(g)], U = t ? d.pathExt || process.env.PATHEXT || ".EXE;.CMD;.BAT;.COM" : "", v = t ? U.split(g) : [""];
|
|
8498
|
+
return t && h.indexOf(".") !== -1 && v[0] !== "" && v.unshift(""), { pathEnv: w, pathExt: v, pathExtExe: U };
|
|
8499
8499
|
}, "getPathInfo"), a = c((h, d, g) => {
|
|
8500
8500
|
typeof d == "function" && (g = d, d = {}), d || (d = {});
|
|
8501
|
-
const { pathEnv: w, pathExt:
|
|
8502
|
-
if (P === w.length) return d.all &&
|
|
8503
|
-
const x = w[P],
|
|
8504
|
-
A(
|
|
8505
|
-
}), "step"),
|
|
8506
|
-
if (
|
|
8507
|
-
const H =
|
|
8501
|
+
const { pathEnv: w, pathExt: U, pathExtExe: v } = s(h, d), D = [], M = c((P) => new Promise((A, L) => {
|
|
8502
|
+
if (P === w.length) return d.all && D.length ? A(D) : L(i(h));
|
|
8503
|
+
const x = w[P], C = /^".*"$/.test(x) ? x.slice(1, -1) : x, H = e.join(C, h), j = !C && /^\.[\\\/]/.test(h) ? h.slice(0, 2) + H : H;
|
|
8504
|
+
A(y(j, P, 0));
|
|
8505
|
+
}), "step"), y = c((P, A, L) => new Promise((x, C) => {
|
|
8506
|
+
if (L === U.length) return x(M(A + 1));
|
|
8507
|
+
const H = U[L];
|
|
8508
8508
|
n(P + H, { pathExt: v }, (j, o) => {
|
|
8509
|
-
if (!j && o) if (d.all)
|
|
8509
|
+
if (!j && o) if (d.all) D.push(P + H);
|
|
8510
8510
|
else return x(P + H);
|
|
8511
|
-
return x(
|
|
8511
|
+
return x(y(P, A, L + 1));
|
|
8512
8512
|
});
|
|
8513
8513
|
}), "subStep");
|
|
8514
|
-
return g ?
|
|
8515
|
-
}, "which"),
|
|
8514
|
+
return g ? M(0).then((P) => g(null, P), g) : M(0);
|
|
8515
|
+
}, "which"), u = c((h, d) => {
|
|
8516
8516
|
d = d || {};
|
|
8517
|
-
const { pathEnv: g, pathExt: w, pathExtExe:
|
|
8518
|
-
for (let
|
|
8519
|
-
const
|
|
8520
|
-
for (let
|
|
8521
|
-
const x = A + w[
|
|
8517
|
+
const { pathEnv: g, pathExt: w, pathExtExe: U } = s(h, d), v = [];
|
|
8518
|
+
for (let D = 0; D < g.length; D++) {
|
|
8519
|
+
const M = g[D], y = /^".*"$/.test(M) ? M.slice(1, -1) : M, P = e.join(y, h), A = !y && /^\.[\\\/]/.test(h) ? h.slice(0, 2) + P : P;
|
|
8520
|
+
for (let L = 0; L < w.length; L++) {
|
|
8521
|
+
const x = A + w[L];
|
|
8522
8522
|
try {
|
|
8523
|
-
if (n.sync(x, { pathExt:
|
|
8523
|
+
if (n.sync(x, { pathExt: U })) if (d.all) v.push(x);
|
|
8524
8524
|
else return x;
|
|
8525
8525
|
} catch {
|
|
8526
8526
|
}
|
|
@@ -8530,34 +8530,34 @@ function Ls() {
|
|
|
8530
8530
|
if (d.nothrow) return null;
|
|
8531
8531
|
throw i(h);
|
|
8532
8532
|
}, "whichSync");
|
|
8533
|
-
return Fe = a, a.sync =
|
|
8533
|
+
return Fe = a, a.sync = u, Fe;
|
|
8534
8534
|
}
|
|
8535
|
-
c(
|
|
8536
|
-
var
|
|
8535
|
+
c(Os, "requireWhich");
|
|
8536
|
+
var le = { exports: {} }, rn;
|
|
8537
8537
|
function Ns() {
|
|
8538
|
-
if (rn) return
|
|
8538
|
+
if (rn) return le.exports;
|
|
8539
8539
|
rn = 1;
|
|
8540
8540
|
const t = c((e = {}) => {
|
|
8541
8541
|
const r = e.env || process.env;
|
|
8542
8542
|
return (e.platform || process.platform) !== "win32" ? "PATH" : Object.keys(r).reverse().find((i) => i.toUpperCase() === "PATH") || "Path";
|
|
8543
8543
|
}, "pathKey");
|
|
8544
|
-
return
|
|
8544
|
+
return le.exports = t, le.exports.default = t, le.exports;
|
|
8545
8545
|
}
|
|
8546
8546
|
c(Ns, "requirePathKey");
|
|
8547
|
-
var
|
|
8548
|
-
function
|
|
8549
|
-
if (nn) return
|
|
8547
|
+
var We, nn;
|
|
8548
|
+
function Ds() {
|
|
8549
|
+
if (nn) return We;
|
|
8550
8550
|
nn = 1;
|
|
8551
|
-
const t =
|
|
8551
|
+
const t = Vt, e = Os(), r = Ns();
|
|
8552
8552
|
function n(s, a) {
|
|
8553
|
-
const
|
|
8553
|
+
const u = s.options.env || process.env, h = process.cwd(), d = s.options.cwd != null, g = d && process.chdir !== void 0 && !process.chdir.disabled;
|
|
8554
8554
|
if (g) try {
|
|
8555
8555
|
process.chdir(s.options.cwd);
|
|
8556
8556
|
} catch {
|
|
8557
8557
|
}
|
|
8558
8558
|
let w;
|
|
8559
8559
|
try {
|
|
8560
|
-
w = e.sync(s.command, { path:
|
|
8560
|
+
w = e.sync(s.command, { path: u[r({ env: u })], pathExt: a ? t.delimiter : void 0 });
|
|
8561
8561
|
} catch {
|
|
8562
8562
|
} finally {
|
|
8563
8563
|
g && process.chdir(h);
|
|
@@ -8568,12 +8568,12 @@ function Ms() {
|
|
|
8568
8568
|
function i(s) {
|
|
8569
8569
|
return n(s) || n(s, true);
|
|
8570
8570
|
}
|
|
8571
|
-
return c(i, "resolveCommand"),
|
|
8571
|
+
return c(i, "resolveCommand"), We = i, We;
|
|
8572
8572
|
}
|
|
8573
|
-
c(
|
|
8574
|
-
var
|
|
8575
|
-
function
|
|
8576
|
-
if (sn) return
|
|
8573
|
+
c(Ds, "requireResolveCommand");
|
|
8574
|
+
var ue = {}, sn;
|
|
8575
|
+
function Ms() {
|
|
8576
|
+
if (sn) return ue;
|
|
8577
8577
|
sn = 1;
|
|
8578
8578
|
const t = /([()\][%!^"`<>&|;, *?])/g;
|
|
8579
8579
|
function e(n) {
|
|
@@ -8583,32 +8583,32 @@ function Ds() {
|
|
|
8583
8583
|
function r(n, i) {
|
|
8584
8584
|
return n = `${n}`, n = n.replace(/(?=(\\+?)?)\1"/g, '$1$1\\"'), n = n.replace(/(?=(\\+?)?)\1$/, "$1$1"), n = `"${n}"`, n = n.replace(t, "^$1"), i && (n = n.replace(t, "^$1")), n;
|
|
8585
8585
|
}
|
|
8586
|
-
return c(r, "escapeArgument"),
|
|
8586
|
+
return c(r, "escapeArgument"), ue.command = e, ue.argument = r, ue;
|
|
8587
8587
|
}
|
|
8588
|
-
c(
|
|
8589
|
-
var
|
|
8588
|
+
c(Ms, "require_escape");
|
|
8589
|
+
var Ve, on;
|
|
8590
8590
|
function xs() {
|
|
8591
|
-
return on || (on = 1,
|
|
8591
|
+
return on || (on = 1, Ve = /^#!(.*)/), Ve;
|
|
8592
8592
|
}
|
|
8593
8593
|
c(xs, "requireShebangRegex");
|
|
8594
|
-
var
|
|
8595
|
-
function
|
|
8596
|
-
if (an) return
|
|
8594
|
+
var Ke, an;
|
|
8595
|
+
function $s() {
|
|
8596
|
+
if (an) return Ke;
|
|
8597
8597
|
an = 1;
|
|
8598
8598
|
const t = xs();
|
|
8599
|
-
return
|
|
8599
|
+
return Ke = c((e = "") => {
|
|
8600
8600
|
const r = e.match(t);
|
|
8601
8601
|
if (!r) return null;
|
|
8602
8602
|
const [n, i] = r[0].replace(/#! ?/, "").split(" "), s = n.split("/").pop();
|
|
8603
8603
|
return s === "env" ? i : i ? `${s} ${i}` : s;
|
|
8604
|
-
}, "shebangCommand"),
|
|
8604
|
+
}, "shebangCommand"), Ke;
|
|
8605
8605
|
}
|
|
8606
|
-
c(
|
|
8606
|
+
c($s, "requireShebangCommand");
|
|
8607
8607
|
var qe, cn;
|
|
8608
|
-
function
|
|
8608
|
+
function Gs() {
|
|
8609
8609
|
if (cn) return qe;
|
|
8610
8610
|
cn = 1;
|
|
8611
|
-
const t =
|
|
8611
|
+
const t = Wt, e = $s();
|
|
8612
8612
|
function r(n) {
|
|
8613
8613
|
const s = Buffer.alloc(150);
|
|
8614
8614
|
let a;
|
|
@@ -8620,42 +8620,42 @@ function $s() {
|
|
|
8620
8620
|
}
|
|
8621
8621
|
return c(r, "readShebang"), qe = r, qe;
|
|
8622
8622
|
}
|
|
8623
|
-
c(
|
|
8624
|
-
var Ye,
|
|
8623
|
+
c(Gs, "requireReadShebang");
|
|
8624
|
+
var Ye, ln;
|
|
8625
8625
|
function Hs() {
|
|
8626
|
-
if (
|
|
8627
|
-
|
|
8628
|
-
const t =
|
|
8629
|
-
function
|
|
8626
|
+
if (ln) return Ye;
|
|
8627
|
+
ln = 1;
|
|
8628
|
+
const t = Vt, e = Ds(), r = Ms(), n = Gs(), i = process.platform === "win32", s = /\.(?:com|exe)$/i, a = /node_modules[\\/].bin[\\/][^\\/]+\.cmd$/i;
|
|
8629
|
+
function u(g) {
|
|
8630
8630
|
g.file = e(g);
|
|
8631
8631
|
const w = g.file && n(g.file);
|
|
8632
8632
|
return w ? (g.args.unshift(g.file), g.command = w, e(g)) : g.file;
|
|
8633
8633
|
}
|
|
8634
|
-
c(
|
|
8634
|
+
c(u, "detectShebang");
|
|
8635
8635
|
function h(g) {
|
|
8636
8636
|
if (!i) return g;
|
|
8637
|
-
const w =
|
|
8638
|
-
if (g.options.forceShell ||
|
|
8637
|
+
const w = u(g), U = !s.test(w);
|
|
8638
|
+
if (g.options.forceShell || U) {
|
|
8639
8639
|
const v = a.test(w);
|
|
8640
|
-
g.command = t.normalize(g.command), g.command = r.command(g.command), g.args = g.args.map((
|
|
8641
|
-
const
|
|
8642
|
-
g.args = ["/d", "/s", "/c", `"${
|
|
8640
|
+
g.command = t.normalize(g.command), g.command = r.command(g.command), g.args = g.args.map((M) => r.argument(M, v));
|
|
8641
|
+
const D = [g.command].concat(g.args).join(" ");
|
|
8642
|
+
g.args = ["/d", "/s", "/c", `"${D}"`], g.command = process.env.comspec || "cmd.exe", g.options.windowsVerbatimArguments = true;
|
|
8643
8643
|
}
|
|
8644
8644
|
return g;
|
|
8645
8645
|
}
|
|
8646
8646
|
c(h, "parseNonShell");
|
|
8647
|
-
function d(g, w,
|
|
8648
|
-
w && !Array.isArray(w) && (
|
|
8649
|
-
const v = { command: g, args: w, options:
|
|
8650
|
-
return
|
|
8647
|
+
function d(g, w, U) {
|
|
8648
|
+
w && !Array.isArray(w) && (U = w, w = null), w = w ? w.slice(0) : [], U = Object.assign({}, U);
|
|
8649
|
+
const v = { command: g, args: w, options: U, file: void 0, original: { command: g, args: w } };
|
|
8650
|
+
return U.shell ? v : h(v);
|
|
8651
8651
|
}
|
|
8652
8652
|
return c(d, "parse"), Ye = d, Ye;
|
|
8653
8653
|
}
|
|
8654
8654
|
c(Hs, "requireParse");
|
|
8655
|
-
var
|
|
8655
|
+
var Qe, un;
|
|
8656
8656
|
function ks() {
|
|
8657
|
-
if (
|
|
8658
|
-
|
|
8657
|
+
if (un) return Qe;
|
|
8658
|
+
un = 1;
|
|
8659
8659
|
const t = process.platform === "win32";
|
|
8660
8660
|
function e(s, a) {
|
|
8661
8661
|
return Object.assign(new Error(`${a} ${s.command} ENOENT`), { code: "ENOENT", errno: "ENOENT", syscall: `${a} ${s.command}`, path: s.command, spawnargs: s.args });
|
|
@@ -8663,13 +8663,13 @@ function ks() {
|
|
|
8663
8663
|
c(e, "notFoundError");
|
|
8664
8664
|
function r(s, a) {
|
|
8665
8665
|
if (!t) return;
|
|
8666
|
-
const
|
|
8666
|
+
const u = s.emit;
|
|
8667
8667
|
s.emit = function(h, d) {
|
|
8668
8668
|
if (h === "exit") {
|
|
8669
8669
|
const g = n(d, a);
|
|
8670
|
-
if (g) return
|
|
8670
|
+
if (g) return u.call(s, "error", g);
|
|
8671
8671
|
}
|
|
8672
|
-
return
|
|
8672
|
+
return u.apply(s, arguments);
|
|
8673
8673
|
};
|
|
8674
8674
|
}
|
|
8675
8675
|
c(r, "hookChildProcess");
|
|
@@ -8680,60 +8680,60 @@ function ks() {
|
|
|
8680
8680
|
function i(s, a) {
|
|
8681
8681
|
return t && s === 1 && !a.file ? e(a.original, "spawnSync") : null;
|
|
8682
8682
|
}
|
|
8683
|
-
return c(i, "verifyENOENTSync"),
|
|
8683
|
+
return c(i, "verifyENOENTSync"), Qe = { hookChildProcess: r, verifyENOENT: n, verifyENOENTSync: i, notFoundError: e }, Qe;
|
|
8684
8684
|
}
|
|
8685
8685
|
c(ks, "requireEnoent");
|
|
8686
8686
|
var fn;
|
|
8687
8687
|
function js() {
|
|
8688
|
-
if (fn) return
|
|
8688
|
+
if (fn) return Gt.exports;
|
|
8689
8689
|
fn = 1;
|
|
8690
8690
|
const t = require$$0$2, e = Hs(), r = ks();
|
|
8691
|
-
function n(s, a,
|
|
8692
|
-
const h = e(s, a,
|
|
8691
|
+
function n(s, a, u) {
|
|
8692
|
+
const h = e(s, a, u), d = t.spawn(h.command, h.args, h.options);
|
|
8693
8693
|
return r.hookChildProcess(d, h), d;
|
|
8694
8694
|
}
|
|
8695
8695
|
c(n, "spawn");
|
|
8696
|
-
function i(s, a,
|
|
8697
|
-
const h = e(s, a,
|
|
8696
|
+
function i(s, a, u) {
|
|
8697
|
+
const h = e(s, a, u), d = t.spawnSync(h.command, h.args, h.options);
|
|
8698
8698
|
return d.error = d.error || r.verifyENOENTSync(d.status, h), d;
|
|
8699
8699
|
}
|
|
8700
|
-
return c(i, "spawnSync"),
|
|
8700
|
+
return c(i, "spawnSync"), Gt.exports = n, Gt.exports.spawn = n, Gt.exports.sync = i, Gt.exports._parse = e, Gt.exports._enoent = r, Gt.exports;
|
|
8701
8701
|
}
|
|
8702
8702
|
c(js, "requireCrossSpawn");
|
|
8703
|
-
var Fs = js(),
|
|
8704
|
-
function
|
|
8703
|
+
var Fs = js(), Ws = Cr(Fs);
|
|
8704
|
+
function Vs(t) {
|
|
8705
8705
|
const e = typeof t == "string" ? `
|
|
8706
8706
|
` : 10, r = typeof t == "string" ? "\r" : 13;
|
|
8707
8707
|
return t[t.length - 1] === e && (t = t.slice(0, -1)), t[t.length - 1] === r && (t = t.slice(0, -1)), t;
|
|
8708
8708
|
}
|
|
8709
|
-
c(
|
|
8709
|
+
c(Vs, "stripFinalNewline");
|
|
8710
8710
|
function hn(t = {}) {
|
|
8711
8711
|
const { env: e = process.env, platform: r = process.platform } = t;
|
|
8712
8712
|
return r !== "win32" ? "PATH" : Object.keys(e).reverse().find((n) => n.toUpperCase() === "PATH") || "Path";
|
|
8713
8713
|
}
|
|
8714
8714
|
c(hn, "pathKey");
|
|
8715
|
-
const
|
|
8716
|
-
const s = t instanceof URL ? fileURLToPath(t) : t, a = path.resolve(s),
|
|
8717
|
-
return r && qs(
|
|
8715
|
+
const Ks = c(({ cwd: t = y.cwd(), path: e = y.env[hn()], preferLocal: r = true, execPath: n = y.execPath, addExecPath: i = true } = {}) => {
|
|
8716
|
+
const s = t instanceof URL ? fileURLToPath(t) : t, a = path.resolve(s), u = [];
|
|
8717
|
+
return r && qs(u, a), i && Ys(u, n, a), [...u, e].join(path.delimiter);
|
|
8718
8718
|
}, "npmRunPath"), qs = c((t, e) => {
|
|
8719
8719
|
let r;
|
|
8720
8720
|
for (; r !== e; ) t.push(path.join(e, "node_modules/.bin")), r = e, e = path.resolve(e, "..");
|
|
8721
8721
|
}, "applyPreferLocal"), Ys = c((t, e, r) => {
|
|
8722
8722
|
const n = e instanceof URL ? fileURLToPath(e) : e;
|
|
8723
8723
|
t.push(path.resolve(r, n, ".."));
|
|
8724
|
-
}, "applyExecPath"),
|
|
8724
|
+
}, "applyExecPath"), Qs = c(({ env: t = y.env, ...e } = {}) => {
|
|
8725
8725
|
t = { ...t };
|
|
8726
8726
|
const r = hn({ env: t });
|
|
8727
|
-
return e.path = t[r], t[r] =
|
|
8728
|
-
}, "npmRunPathEnv"),
|
|
8727
|
+
return e.path = t[r], t[r] = Ks(e), t;
|
|
8728
|
+
}, "npmRunPathEnv"), Js = c(() => {
|
|
8729
8729
|
const t = pn - dn + 1;
|
|
8730
8730
|
return Array.from({ length: t }, zs);
|
|
8731
8731
|
}, "getRealtimeSignals"), zs = c((t, e) => ({ name: `SIGRT${e + 1}`, number: dn + e, action: "terminate", description: "Application-specific signal (realtime)", standard: "posix" }), "getRealtimeSignal"), dn = 34, pn = 64, Xs = [{ name: "SIGHUP", number: 1, action: "terminate", description: "Terminal closed", standard: "posix" }, { name: "SIGINT", number: 2, action: "terminate", description: "User interruption with CTRL-C", standard: "ansi" }, { name: "SIGQUIT", number: 3, action: "core", description: "User interruption with CTRL-\\", standard: "posix" }, { name: "SIGILL", number: 4, action: "core", description: "Invalid machine instruction", standard: "ansi" }, { name: "SIGTRAP", number: 5, action: "core", description: "Debugger breakpoint", standard: "posix" }, { name: "SIGABRT", number: 6, action: "core", description: "Aborted", standard: "ansi" }, { name: "SIGIOT", number: 6, action: "core", description: "Aborted", standard: "bsd" }, { name: "SIGBUS", number: 7, action: "core", description: "Bus error due to misaligned, non-existing address or paging error", standard: "bsd" }, { name: "SIGEMT", number: 7, action: "terminate", description: "Command should be emulated but is not implemented", standard: "other" }, { name: "SIGFPE", number: 8, action: "core", description: "Floating point arithmetic error", standard: "ansi" }, { name: "SIGKILL", number: 9, action: "terminate", description: "Forced termination", standard: "posix", forced: true }, { name: "SIGUSR1", number: 10, action: "terminate", description: "Application-specific signal", standard: "posix" }, { name: "SIGSEGV", number: 11, action: "core", description: "Segmentation fault", standard: "ansi" }, { name: "SIGUSR2", number: 12, action: "terminate", description: "Application-specific signal", standard: "posix" }, { name: "SIGPIPE", number: 13, action: "terminate", description: "Broken pipe or socket", standard: "posix" }, { name: "SIGALRM", number: 14, action: "terminate", description: "Timeout or timer", standard: "posix" }, { name: "SIGTERM", number: 15, action: "terminate", description: "Termination", standard: "ansi" }, { name: "SIGSTKFLT", number: 16, action: "terminate", description: "Stack is empty or overflowed", standard: "other" }, { name: "SIGCHLD", number: 17, action: "ignore", description: "Child process terminated, paused or unpaused", standard: "posix" }, { name: "SIGCLD", number: 17, action: "ignore", description: "Child process terminated, paused or unpaused", standard: "other" }, { name: "SIGCONT", number: 18, action: "unpause", description: "Unpaused", standard: "posix", forced: true }, { name: "SIGSTOP", number: 19, action: "pause", description: "Paused", standard: "posix", forced: true }, { name: "SIGTSTP", number: 20, action: "pause", description: 'Paused using CTRL-Z or "suspend"', standard: "posix" }, { name: "SIGTTIN", number: 21, action: "pause", description: "Background process cannot read terminal input", standard: "posix" }, { name: "SIGBREAK", number: 21, action: "terminate", description: "User interruption with CTRL-BREAK", standard: "other" }, { name: "SIGTTOU", number: 22, action: "pause", description: "Background process cannot write to terminal output", standard: "posix" }, { name: "SIGURG", number: 23, action: "ignore", description: "Socket received out-of-band data", standard: "bsd" }, { name: "SIGXCPU", number: 24, action: "core", description: "Process timed out", standard: "bsd" }, { name: "SIGXFSZ", number: 25, action: "core", description: "File too big", standard: "bsd" }, { name: "SIGVTALRM", number: 26, action: "terminate", description: "Timeout or timer", standard: "bsd" }, { name: "SIGPROF", number: 27, action: "terminate", description: "Timeout or timer", standard: "bsd" }, { name: "SIGWINCH", number: 28, action: "ignore", description: "Terminal window size changed", standard: "bsd" }, { name: "SIGIO", number: 29, action: "terminate", description: "I/O is available", standard: "other" }, { name: "SIGPOLL", number: 29, action: "terminate", description: "Watched event", standard: "other" }, { name: "SIGINFO", number: 29, action: "ignore", description: "Request for process information", standard: "other" }, { name: "SIGPWR", number: 30, action: "terminate", description: "Device running out of power", standard: "systemv" }, { name: "SIGSYS", number: 31, action: "core", description: "Invalid system call", standard: "other" }, { name: "SIGUNUSED", number: 31, action: "terminate", description: "Invalid system call", standard: "other" }], mn = c(() => {
|
|
8732
|
-
const t =
|
|
8732
|
+
const t = Js();
|
|
8733
8733
|
return [...Xs, ...t].map(Zs);
|
|
8734
8734
|
}, "getSignals"), Zs = c(({ name: t, number: e, description: r, action: n, forced: i = false, standard: s }) => {
|
|
8735
|
-
const { signals: { [t]: a } } = constants$1,
|
|
8736
|
-
return { name: t, number:
|
|
8735
|
+
const { signals: { [t]: a } } = constants$1, u = a !== void 0;
|
|
8736
|
+
return { name: t, number: u ? a : e, description: r, supported: u, action: n, forced: i, standard: s };
|
|
8737
8737
|
}, "normalizeSignal"), to = c(() => {
|
|
8738
8738
|
const t = mn();
|
|
8739
8739
|
return Object.fromEntries(t.map(eo));
|
|
@@ -8743,19 +8743,19 @@ const Ws = c(({ cwd: t = y.cwd(), path: e = y.env[hn()], preferLocal: r = true,
|
|
|
8743
8743
|
}, "getSignalsByNumber"), io = c((t, e) => {
|
|
8744
8744
|
const r = so(t, e);
|
|
8745
8745
|
if (r === void 0) return {};
|
|
8746
|
-
const { name: n, description: i, supported: s, action: a, forced:
|
|
8747
|
-
return { [t]: { name: n, number: t, description: i, supported: s, action: a, forced:
|
|
8746
|
+
const { name: n, description: i, supported: s, action: a, forced: u, standard: h } = r;
|
|
8747
|
+
return { [t]: { name: n, number: t, description: i, supported: s, action: a, forced: u, standard: h } };
|
|
8748
8748
|
}, "getSignalByNumber"), so = c((t, e) => {
|
|
8749
8749
|
const r = e.find(({ name: n }) => constants$1.signals[n] === t);
|
|
8750
8750
|
return r !== void 0 ? r : e.find((n) => n.number === t);
|
|
8751
8751
|
}, "findSignalByNumber");
|
|
8752
8752
|
no();
|
|
8753
|
-
const oo = c(({ timedOut: t, timeout: e, errorCode: r, signal: n, signalDescription: i, exitCode: s, isCanceled: a }) => t ? `timed out after ${e} milliseconds` : r !== void 0 ? `failed with ${r}` : n !== void 0 ? `was killed with ${n} (${i})` : s !== void 0 ? `failed with exit code ${s}` : "failed", "getErrorPrefix"), gn = c(({ stdout: t, stderr: e, all: r, error: n, signal: i, exitCode: s, command: a, escapedCommand:
|
|
8753
|
+
const oo = c(({ timedOut: t, timeout: e, errorCode: r, signal: n, signalDescription: i, exitCode: s, isCanceled: a }) => t ? `timed out after ${e} milliseconds` : r !== void 0 ? `failed with ${r}` : n !== void 0 ? `was killed with ${n} (${i})` : s !== void 0 ? `failed with exit code ${s}` : "failed", "getErrorPrefix"), gn = c(({ stdout: t, stderr: e, all: r, error: n, signal: i, exitCode: s, command: a, escapedCommand: u, timedOut: h, isCanceled: d, killed: g, parsed: { options: { timeout: w, cwd: U = y.cwd() } } }) => {
|
|
8754
8754
|
s = s === null ? void 0 : s, i = i === null ? void 0 : i;
|
|
8755
|
-
const v = i === void 0 ? void 0 : ro[i].description,
|
|
8756
|
-
${n.message}` :
|
|
8755
|
+
const v = i === void 0 ? void 0 : ro[i].description, D = n && n.code, y = `Command ${oo({ timedOut: h, timeout: w, errorCode: D, signal: i, signalDescription: v, exitCode: s, isCanceled: d })}: ${a}`, P = Object.prototype.toString.call(n) === "[object Error]", A = P ? `${y}
|
|
8756
|
+
${n.message}` : y, L = [A, e, t].filter(Boolean).join(`
|
|
8757
8757
|
`);
|
|
8758
|
-
return P ? (n.originalMessage = n.message, n.message =
|
|
8758
|
+
return P ? (n.originalMessage = n.message, n.message = L) : n = new Error(L), n.shortMessage = A, n.command = a, n.escapedCommand = u, n.exitCode = s, n.signal = i, n.signalDescription = v, n.stdout = t, n.stderr = e, n.cwd = U, r !== void 0 && (n.all = r), "bufferedData" in n && delete n.bufferedData, n.failed = true, n.timedOut = !!h, n.isCanceled = d, n.killed = g && !h, n;
|
|
8759
8759
|
}, "makeError"), fe = ["stdin", "stdout", "stderr"], ao = c((t) => fe.some((e) => t[e] !== void 0), "hasAlias"), co = c((t) => {
|
|
8760
8760
|
if (!t) return;
|
|
8761
8761
|
const { stdio: e } = t;
|
|
@@ -8767,8 +8767,8 @@ ${n.message}` : b, O = [A, e, t].filter(Boolean).join(`
|
|
|
8767
8767
|
return Array.from({ length: r }, (n, i) => e[i]);
|
|
8768
8768
|
}, "normalizeStdio"), Ft = [];
|
|
8769
8769
|
Ft.push("SIGHUP", "SIGINT", "SIGTERM"), process.platform !== "win32" && Ft.push("SIGALRM", "SIGABRT", "SIGVTALRM", "SIGXCPU", "SIGXFSZ", "SIGUSR2", "SIGTRAP", "SIGSYS", "SIGQUIT", "SIGIOT"), process.platform === "linux" && Ft.push("SIGIO", "SIGPOLL", "SIGPWR", "SIGSTKFLT");
|
|
8770
|
-
const he = c((t) => !!t && typeof t == "object" && typeof t.removeListener == "function" && typeof t.emit == "function" && typeof t.reallyExit == "function" && typeof t.listeners == "function" && typeof t.kill == "function" && typeof t.pid == "number" && typeof t.on == "function", "processOk"),
|
|
8771
|
-
class
|
|
8770
|
+
const he = c((t) => !!t && typeof t == "object" && typeof t.removeListener == "function" && typeof t.emit == "function" && typeof t.reallyExit == "function" && typeof t.listeners == "function" && typeof t.kill == "function" && typeof t.pid == "number" && typeof t.on == "function", "processOk"), Je = Symbol.for("signal-exit emitter"), ze = globalThis, lo = Object.defineProperty.bind(Object);
|
|
8771
|
+
class uo {
|
|
8772
8772
|
static {
|
|
8773
8773
|
c(this, "Emitter");
|
|
8774
8774
|
}
|
|
@@ -8777,8 +8777,8 @@ class lo {
|
|
|
8777
8777
|
count = 0;
|
|
8778
8778
|
id = Math.random();
|
|
8779
8779
|
constructor() {
|
|
8780
|
-
if (ze[
|
|
8781
|
-
|
|
8780
|
+
if (ze[Je]) return ze[Je];
|
|
8781
|
+
lo(ze, Je, { value: this, writable: false, enumerable: false, configurable: false });
|
|
8782
8782
|
}
|
|
8783
8783
|
on(e, r) {
|
|
8784
8784
|
this.listeners[e].push(r);
|
|
@@ -8825,7 +8825,7 @@ class po extends En {
|
|
|
8825
8825
|
c(this, "SignalExit");
|
|
8826
8826
|
}
|
|
8827
8827
|
#o = Xe.platform === "win32" ? "SIGINT" : "SIGHUP";
|
|
8828
|
-
#e = new
|
|
8828
|
+
#e = new uo();
|
|
8829
8829
|
#t;
|
|
8830
8830
|
#i;
|
|
8831
8831
|
#s;
|
|
@@ -8839,8 +8839,8 @@ class po extends En {
|
|
|
8839
8839
|
const s = e;
|
|
8840
8840
|
if (typeof s.__signal_exit_emitter__ == "object" && typeof s.__signal_exit_emitter__.count == "number" && (i += s.__signal_exit_emitter__.count), n.length === i) {
|
|
8841
8841
|
this.unload();
|
|
8842
|
-
const a = this.#e.emit("exit", null, r),
|
|
8843
|
-
a || e.kill(e.pid,
|
|
8842
|
+
const a = this.#e.emit("exit", null, r), u = r === "SIGHUP" ? this.#o : r;
|
|
8843
|
+
a || e.kill(e.pid, u);
|
|
8844
8844
|
}
|
|
8845
8845
|
};
|
|
8846
8846
|
this.#s = e.reallyExit, this.#i = e.emit;
|
|
@@ -8908,8 +8908,8 @@ function go() {
|
|
|
8908
8908
|
return e.length == 0;
|
|
8909
8909
|
}
|
|
8910
8910
|
function s(a) {
|
|
8911
|
-
e = e.filter(function(
|
|
8912
|
-
return
|
|
8911
|
+
e = e.filter(function(u) {
|
|
8912
|
+
return u !== a;
|
|
8913
8913
|
}), !e.length && r.readable && r.end();
|
|
8914
8914
|
}
|
|
8915
8915
|
}, "mergeStream"), Ze;
|
|
@@ -8924,32 +8924,32 @@ const Eo = c((t) => {
|
|
|
8924
8924
|
}, "handleInputSync"), So = (async () => {
|
|
8925
8925
|
})().constructor.prototype;
|
|
8926
8926
|
["then", "catch", "finally"].map((t) => [t, Reflect.getOwnPropertyDescriptor(So, t)]);
|
|
8927
|
-
const In = c((t, e = []) => Array.isArray(e) ? [t, ...e] : [t], "normalizeArgs"), Ro = /^[\w.-]+$/, To = c((t) => typeof t != "string" || Ro.test(t) ? t : `"${t.replaceAll('"', '\\"')}"`, "escapeArg"), wo = c((t, e) => In(t, e).join(" "), "joinCommand"), Ao = c((t, e) => In(t, e).map((r) => To(r)).join(" "), "getEscapedCommand"),
|
|
8927
|
+
const In = c((t, e = []) => Array.isArray(e) ? [t, ...e] : [t], "normalizeArgs"), Ro = /^[\w.-]+$/, To = c((t) => typeof t != "string" || Ro.test(t) ? t : `"${t.replaceAll('"', '\\"')}"`, "escapeArg"), wo = c((t, e) => In(t, e).join(" "), "joinCommand"), Ao = c((t, e) => In(t, e).map((r) => To(r)).join(" "), "getEscapedCommand"), bo = debuglog("execa").enabled, de = c((t, e) => String(t).padStart(e, "0"), "padField"), yo = c(() => {
|
|
8928
8928
|
const t = /* @__PURE__ */ new Date();
|
|
8929
8929
|
return `${de(t.getHours(), 2)}:${de(t.getMinutes(), 2)}:${de(t.getSeconds(), 2)}.${de(t.getMilliseconds(), 3)}`;
|
|
8930
|
-
}, "getTimestamp"),
|
|
8931
|
-
e && y.stderr.write(`[${
|
|
8930
|
+
}, "getTimestamp"), Uo = c((t, { verbose: e }) => {
|
|
8931
|
+
e && y.stderr.write(`[${yo()}] ${t}
|
|
8932
8932
|
`);
|
|
8933
|
-
}, "logCommand"), vo = 1e3 * 1e3 * 100,
|
|
8933
|
+
}, "logCommand"), vo = 1e3 * 1e3 * 100, Co = c(({ env: t, extendEnv: e, preferLocal: r, localDir: n, execPath: i }) => {
|
|
8934
8934
|
const s = e ? { ...y.env, ...t } : t;
|
|
8935
|
-
return r ?
|
|
8935
|
+
return r ? Qs({ env: s, cwd: n, execPath: i }) : s;
|
|
8936
8936
|
}, "getEnv"), Bo = c((t, e, r = {}) => {
|
|
8937
|
-
const n =
|
|
8938
|
-
return t = n.command, e = n.args, r = n.options, r = { maxBuffer: vo, buffer: true, stripFinalNewline: true, extendEnv: true, preferLocal: false, localDir: r.cwd || y.cwd(), execPath: y.execPath, encoding: "utf8", reject: true, cleanup: true, all: false, windowsHide: true, verbose:
|
|
8939
|
-
}, "handleArguments"), Sn = c((t, e, r) => typeof e != "string" && !Buffer$1.isBuffer(e) ? r === void 0 ? void 0 : "" : t.stripFinalNewline ?
|
|
8937
|
+
const n = Ws._parse(t, e, r);
|
|
8938
|
+
return t = n.command, e = n.args, r = n.options, r = { maxBuffer: vo, buffer: true, stripFinalNewline: true, extendEnv: true, preferLocal: false, localDir: r.cwd || y.cwd(), execPath: y.execPath, encoding: "utf8", reject: true, cleanup: true, all: false, windowsHide: true, verbose: bo, ...r }, r.env = Co(r), r.stdio = co(r), y.platform === "win32" && path.basename(t, ".exe") === "cmd" && e.unshift("/q"), { file: t, args: e, options: r, parsed: n };
|
|
8939
|
+
}, "handleArguments"), Sn = c((t, e, r) => typeof e != "string" && !Buffer$1.isBuffer(e) ? r === void 0 ? void 0 : "" : t.stripFinalNewline ? Vs(e) : e, "handleOutput");
|
|
8940
8940
|
function tr(t, e, r) {
|
|
8941
8941
|
const n = Bo(t, e, r), i = wo(t, e), s = Ao(t, e);
|
|
8942
|
-
|
|
8942
|
+
Uo(s, n.options);
|
|
8943
8943
|
const a = Io(n.options);
|
|
8944
|
-
let
|
|
8944
|
+
let u;
|
|
8945
8945
|
try {
|
|
8946
|
-
|
|
8946
|
+
u = childProcess.spawnSync(n.file, n.args, { ...n.options, input: a });
|
|
8947
8947
|
} catch (g) {
|
|
8948
8948
|
throw gn({ error: g, stdout: "", stderr: "", all: "", command: i, escapedCommand: s, parsed: n, timedOut: false, isCanceled: false, killed: false });
|
|
8949
8949
|
}
|
|
8950
|
-
const h = Sn(n.options,
|
|
8951
|
-
if (
|
|
8952
|
-
const g = gn({ stdout: h, stderr: d, error:
|
|
8950
|
+
const h = Sn(n.options, u.stdout, u.error), d = Sn(n.options, u.stderr, u.error);
|
|
8951
|
+
if (u.error || u.status !== 0 || u.signal !== null) {
|
|
8952
|
+
const g = gn({ stdout: h, stderr: d, error: u.error, signal: u.signal, exitCode: u.status, command: i, escapedCommand: s, parsed: n, timedOut: u.error && u.error.code === "ETIMEDOUT", isCanceled: false, killed: u.signal !== null });
|
|
8953
8953
|
if (!n.options.reject) return g;
|
|
8954
8954
|
throw g;
|
|
8955
8955
|
}
|
|
@@ -8978,7 +8978,7 @@ function er(t) {
|
|
|
8978
8978
|
}
|
|
8979
8979
|
c(er, "branch");
|
|
8980
8980
|
const Rn = /^(?:.*)@(?:.*):(?:\d+\/)?(.*)\.git$/, Po = /^\/(.*)\.git$/;
|
|
8981
|
-
function
|
|
8981
|
+
function Lo(t) {
|
|
8982
8982
|
if (t) {
|
|
8983
8983
|
if (t.match(Rn)) return t.replace(Rn, "$1");
|
|
8984
8984
|
try {
|
|
@@ -8988,12 +8988,12 @@ function Oo(t) {
|
|
|
8988
8988
|
}
|
|
8989
8989
|
}
|
|
8990
8990
|
}
|
|
8991
|
-
c(
|
|
8992
|
-
var
|
|
8991
|
+
c(Lo, "getSlugFromGitURL");
|
|
8992
|
+
var Oo = { detect({ env: t }) {
|
|
8993
8993
|
return !!t.BUILDKITE;
|
|
8994
8994
|
}, configuration({ env: t }) {
|
|
8995
8995
|
const e = t.BUILDKITE_PULL_REQUEST === "false" ? void 0 : t.BUILDKITE_PULL_REQUEST, r = !!e;
|
|
8996
|
-
return { name: "Buildkite", service: "buildkite", build: t.BUILDKITE_BUILD_NUMBER, buildUrl: t.BUILDKITE_BUILD_URL, commit: t.BUILDKITE_COMMIT, tag: t.BUILDKITE_TAG, branch: r ? t.BUILDKITE_PULL_REQUEST_BASE_BRANCH : t.BUILDKITE_BRANCH, slug:
|
|
8996
|
+
return { name: "Buildkite", service: "buildkite", build: t.BUILDKITE_BUILD_NUMBER, buildUrl: t.BUILDKITE_BUILD_URL, commit: t.BUILDKITE_COMMIT, tag: t.BUILDKITE_TAG, branch: r ? t.BUILDKITE_PULL_REQUEST_BASE_BRANCH : t.BUILDKITE_BRANCH, slug: Lo(t.BUILDKITE_REPO), pr: e, isPr: r, prBranch: r ? t.BUILDKITE_BRANCH : void 0, root: t.BUILDKITE_BUILD_CHECKOUT_PATH };
|
|
8997
8997
|
} }, No = { detect({ env: t }) {
|
|
8998
8998
|
return !!t.CIRCLECI;
|
|
8999
8999
|
}, configuration({ env: t }) {
|
|
@@ -9001,12 +9001,12 @@ var Lo = { detect({ env: t }) {
|
|
|
9001
9001
|
return { name: "CircleCI", service: "circleci", build: t.CIRCLE_BUILD_NUM, buildUrl: t.CIRCLE_BUILD_URL, job: `${t.CIRCLE_BUILD_NUM}.${t.CIRCLE_NODE_INDEX}`, commit: t.CIRCLE_SHA1, tag: t.CIRCLE_TAG, branch: r ? void 0 : t.CIRCLE_BRANCH, pr: e, isPr: r, prBranch: r ? t.CIRCLE_BRANCH : void 0, slug: `${t.CIRCLE_PROJECT_USERNAME}/${t.CIRCLE_PROJECT_REPONAME}` };
|
|
9002
9002
|
} };
|
|
9003
9003
|
const Tn = "https://cirrus-ci.com";
|
|
9004
|
-
var
|
|
9004
|
+
var Do = { detect({ env: t }) {
|
|
9005
9005
|
return !!t.CIRRUS_CI;
|
|
9006
9006
|
}, configuration({ env: t }) {
|
|
9007
9007
|
const e = t.CIRRUS_PR, r = !!e;
|
|
9008
9008
|
return { name: "Cirrus CI", service: "cirrus", commit: t.CIRRUS_CHANGE_IN_REPO, tag: t.CIRRUS_TAG, build: t.CIRRUS_BUILD_ID, buildUrl: `${Tn}/build/${t.CIRRUS_BUILD_ID}`, job: t.CIRRUS_TASK_ID, jobUrl: `${Tn}/task/${t.CIRRUS_TASK_ID}`, branch: r ? t.CIRRUS_BASE_BRANCH : t.CIRRUS_BRANCH, pr: e, isPr: r, prBranch: r ? t.CIRRUS_BRANCH : void 0, slug: t.CIRRUS_REPO_FULL_NAME, root: t.CIRRUS_WORKING_DIR };
|
|
9009
|
-
} },
|
|
9009
|
+
} }, Mo = { detect({ env: t }) {
|
|
9010
9010
|
return t.CF_PAGES === "1";
|
|
9011
9011
|
}, configuration({ env: t }) {
|
|
9012
9012
|
return { name: "Cloudflare Pages", service: "cloudflarePages", commit: t.CF_PAGES_COMMIT_SHA, branch: t.CF_PAGES_BRANCH, root: t.PWD };
|
|
@@ -9014,12 +9014,12 @@ var Mo = { detect({ env: t }) {
|
|
|
9014
9014
|
return !!t.CODEBUILD_BUILD_ID;
|
|
9015
9015
|
}, configuration({ env: t, cwd: e }) {
|
|
9016
9016
|
return { name: "AWS CodeBuild", service: "codebuild", commit: pe({ env: t, cwd: e }), build: t.CODEBUILD_BUILD_ID, branch: er({ env: t, cwd: e }), buildUrl: `https://console.aws.amazon.com/codebuild/home?region=${t.AWS_REGION}#/builds/${t.CODEBUILD_BUILD_ID}/view/new`, root: t.PWD };
|
|
9017
|
-
} },
|
|
9017
|
+
} }, $o = { detect({ env: t }) {
|
|
9018
9018
|
return !!t.CF_BUILD_ID;
|
|
9019
9019
|
}, configuration({ env: t }) {
|
|
9020
9020
|
const e = t.CF_PULL_REQUEST_NUMBER, r = !!e;
|
|
9021
9021
|
return { name: "Codefresh", service: "codefresh", commit: t.CF_REVISION, build: t.CF_BUILD_ID, buildUrl: t.CF_BUILD_URL, branch: r ? t.CF_PULL_REQUEST_TARGET : t.CF_BRANCH, pr: e, isPr: r, prBranch: r ? t.CF_BRANCH : void 0, slug: `${t.CF_REPO_OWNER}/${t.CF_REPO_NAME}`, root: t.CF_VOLUME_PATH };
|
|
9022
|
-
} },
|
|
9022
|
+
} }, Go = { detect({ env: t }) {
|
|
9023
9023
|
return t.CI_NAME && t.CI_NAME === "codeship";
|
|
9024
9024
|
}, configuration({ env: t }) {
|
|
9025
9025
|
return { name: "Codeship", service: "codeship", build: t.CI_BUILD_NUMBER, buildUrl: t.CI_BUILD_URL, commit: t.CI_COMMIT_ID, branch: t.CI_BRANCH, slug: t.CI_REPO_NAME };
|
|
@@ -9042,17 +9042,17 @@ const jo = c(({ env: t }) => {
|
|
|
9042
9042
|
const e = t.GITHUB_EVENT_PATH ? JSON.parse(readFileSync(t.GITHUB_EVENT_PATH, "utf-8")) : void 0;
|
|
9043
9043
|
return e && e.pull_request ? e.pull_request.number : void 0;
|
|
9044
9044
|
}, "getPrNumber");
|
|
9045
|
-
var
|
|
9045
|
+
var Wo = { detect({ env: t }) {
|
|
9046
9046
|
return !!t.GITHUB_ACTIONS;
|
|
9047
9047
|
}, configuration({ env: t, cwd: e }) {
|
|
9048
9048
|
const r = t.GITHUB_EVENT_NAME === "pull_request" || t.GITHUB_EVENT_NAME === "pull_request_target", n = ee(t.GITHUB_EVENT_NAME === "pull_request_target" ? `refs/pull/${Fo(t)}/merge` : t.GITHUB_REF);
|
|
9049
9049
|
return { name: "GitHub Actions", service: "github", commit: t.GITHUB_SHA, build: t.GITHUB_RUN_ID, buildUrl: `${t.GITHUB_SERVER_URL}/${t.GITHUB_REPOSITORY}/actions/runs/${t.GITHUB_RUN_ID}`, isPr: r, branch: n, prBranch: r ? n : void 0, slug: t.GITHUB_REPOSITORY, root: t.GITHUB_WORKSPACE, ...r ? jo({ env: t }) : void 0 };
|
|
9050
|
-
} },
|
|
9050
|
+
} }, Vo = { detect({ env: t }) {
|
|
9051
9051
|
return !!t.GITLAB_CI;
|
|
9052
9052
|
}, configuration({ env: t }) {
|
|
9053
9053
|
const e = t.CI_MERGE_REQUEST_ID, r = !!e;
|
|
9054
9054
|
return { name: "GitLab CI/CD", service: "gitlab", commit: t.CI_COMMIT_SHA, tag: t.CI_COMMIT_TAG, build: t.CI_PIPELINE_ID, buildUrl: `${t.CI_PROJECT_URL}/pipelines/${t.CI_PIPELINE_ID}`, job: t.CI_JOB_ID, jobUrl: `${t.CI_PROJECT_URL}/-/jobs/${t.CI_JOB_ID}`, branch: r ? t.CI_MERGE_REQUEST_TARGET_BRANCH_NAME : t.CI_COMMIT_REF_NAME, pr: e, isPr: r, prBranch: t.CI_MERGE_REQUEST_SOURCE_BRANCH_NAME, slug: t.CI_PROJECT_PATH, root: t.CI_PROJECT_DIR };
|
|
9055
|
-
} },
|
|
9055
|
+
} }, Ko = { detect({ env: t }) {
|
|
9056
9056
|
return !!t.JENKINS_URL;
|
|
9057
9057
|
}, configuration({ env: t, cwd: e }) {
|
|
9058
9058
|
const r = t.ghprbPullId || t.gitlabMergeRequestId || t.CHANGE_ID, n = !!r, i = t.GIT_LOCAL_BRANCH || t.GIT_BRANCH || t.gitlabBranch || t.BRANCH_NAME;
|
|
@@ -9066,12 +9066,12 @@ var Vo = { detect({ env: t }) {
|
|
|
9066
9066
|
return !!t.DISTELLI_APPNAME;
|
|
9067
9067
|
}, configuration({ env: t }) {
|
|
9068
9068
|
return { name: "Puppet", service: "puppet", build: t.DISTELLI_BUILDNUM, buildUrl: t.DISTELLI_RELEASE, commit: t.DISTELLI_RELREVISION, branch: t.DISTELLI_RELBRANCH, root: t.DISTELLI_INSTALLHOME };
|
|
9069
|
-
} },
|
|
9069
|
+
} }, Qo = { detect({ env: t }) {
|
|
9070
9070
|
return !!t.SAILCI;
|
|
9071
9071
|
}, configuration({ env: t }) {
|
|
9072
9072
|
const e = t.SAIL_PULL_REQUEST_NUMBER, r = !!e;
|
|
9073
9073
|
return { name: "Sail CI", service: "sail", commit: t.SAIL_COMMIT_SHA, branch: r ? void 0 : t.SAIL_COMMIT_BRANCH, pr: e, isPr: r, slug: `${t.SAIL_REPO_OWNER}/${t.SAIL_REPO_NAME}`, root: t.SAIL_CLONE_DIR };
|
|
9074
|
-
} },
|
|
9074
|
+
} }, Jo = { detect({ env: t }) {
|
|
9075
9075
|
return !!t.SCREWDRIVER;
|
|
9076
9076
|
}, configuration({ env: t }) {
|
|
9077
9077
|
const e = t.SD_PULL_REQUEST, r = !!e;
|
|
@@ -9095,7 +9095,7 @@ var Vo = { detect({ env: t }) {
|
|
|
9095
9095
|
function ta() {
|
|
9096
9096
|
if (wn) return Ht;
|
|
9097
9097
|
wn = 1, Object.defineProperty(Ht, "__esModule", { value: true }), Ht.of = Ht.PropertiesFile = void 0;
|
|
9098
|
-
var t = e(
|
|
9098
|
+
var t = e(Wt);
|
|
9099
9099
|
function e(i) {
|
|
9100
9100
|
return i && i.__esModule ? i : { default: i };
|
|
9101
9101
|
}
|
|
@@ -9109,7 +9109,7 @@ function ta() {
|
|
|
9109
9109
|
}
|
|
9110
9110
|
makeKeys(s) {
|
|
9111
9111
|
if (s && s.indexOf("#") !== 0) {
|
|
9112
|
-
let a = ["=", ":"].map((g) => s.indexOf(g)).filter((g) => g > -1),
|
|
9112
|
+
let a = ["=", ":"].map((g) => s.indexOf(g)).filter((g) => g > -1), u = Math.min(...a), h = s.substring(0, u).trim(), d = s.substring(u + 1).trim();
|
|
9113
9113
|
if (this.objs.hasOwnProperty(h)) if (Array.isArray(this.objs[h])) this.objs[h].push(d);
|
|
9114
9114
|
else {
|
|
9115
9115
|
let g = this.objs[h];
|
|
@@ -9122,12 +9122,12 @@ function ta() {
|
|
|
9122
9122
|
}
|
|
9123
9123
|
}
|
|
9124
9124
|
addFile(s) {
|
|
9125
|
-
let
|
|
9126
|
-
for (let d = 0; d <
|
|
9127
|
-
let g =
|
|
9125
|
+
let u = t.default.readFileSync(s, "utf-8").split(/\r?\n/), h = this;
|
|
9126
|
+
for (let d = 0; d < u.length; d++) {
|
|
9127
|
+
let g = u[d];
|
|
9128
9128
|
for (; g.substring(g.length - 1) === "\\"; ) {
|
|
9129
9129
|
g = g.slice(0, -1);
|
|
9130
|
-
let w =
|
|
9130
|
+
let w = u[d + 1];
|
|
9131
9131
|
g = g + w.trim(), d++;
|
|
9132
9132
|
}
|
|
9133
9133
|
h.makeKeys(g);
|
|
@@ -9138,16 +9138,16 @@ function ta() {
|
|
|
9138
9138
|
}
|
|
9139
9139
|
get(s, a) {
|
|
9140
9140
|
if (this.objs.hasOwnProperty(s)) if (Array.isArray(this.objs[s])) {
|
|
9141
|
-
let
|
|
9142
|
-
for (let h = 0; h < this.objs[s].length; h++)
|
|
9143
|
-
return
|
|
9141
|
+
let u = [];
|
|
9142
|
+
for (let h = 0; h < this.objs[s].length; h++) u[h] = this.interpolate(this.objs[s][h]);
|
|
9143
|
+
return u;
|
|
9144
9144
|
} else return typeof this.objs[s] > "u" ? "" : this.interpolate(this.objs[s]);
|
|
9145
9145
|
return a;
|
|
9146
9146
|
}
|
|
9147
9147
|
getLast(s, a) {
|
|
9148
9148
|
if (this.objs.hasOwnProperty(s)) if (Array.isArray(this.objs[s])) {
|
|
9149
|
-
var
|
|
9150
|
-
return this.interpolate(this.objs[s][
|
|
9149
|
+
var u = this.objs[s].length;
|
|
9150
|
+
return this.interpolate(this.objs[s][u - 1]);
|
|
9151
9151
|
} else return typeof this.objs[s] > "u" ? "" : this.interpolate(this.objs[s]);
|
|
9152
9152
|
return a;
|
|
9153
9153
|
}
|
|
@@ -9155,28 +9155,28 @@ function ta() {
|
|
|
9155
9155
|
return this.objs.hasOwnProperty(s) ? Array.isArray(this.objs[s]) ? this.interpolate(this.objs[s][0]) : typeof this.objs[s] > "u" ? "" : this.interpolate(this.objs[s]) : a;
|
|
9156
9156
|
}
|
|
9157
9157
|
getInt(s, a) {
|
|
9158
|
-
let
|
|
9159
|
-
return
|
|
9158
|
+
let u = this.getLast(s);
|
|
9159
|
+
return u ? parseInt(u, 10) : a;
|
|
9160
9160
|
}
|
|
9161
9161
|
getFloat(s, a) {
|
|
9162
|
-
let
|
|
9163
|
-
return
|
|
9162
|
+
let u = this.getLast(s);
|
|
9163
|
+
return u ? parseFloat(u) : a;
|
|
9164
9164
|
}
|
|
9165
9165
|
getBoolean(s, a) {
|
|
9166
|
-
function
|
|
9166
|
+
function u(d) {
|
|
9167
9167
|
return !/^(false|0)$/i.test(d) && !!d;
|
|
9168
9168
|
}
|
|
9169
|
-
c(
|
|
9169
|
+
c(u, "parseBool");
|
|
9170
9170
|
let h = this.getLast(s);
|
|
9171
|
-
return h ?
|
|
9171
|
+
return h ? u(h) : a || false;
|
|
9172
9172
|
}
|
|
9173
9173
|
set(s, a) {
|
|
9174
9174
|
this.objs[s] = a;
|
|
9175
9175
|
}
|
|
9176
9176
|
interpolate(s) {
|
|
9177
9177
|
let a = this;
|
|
9178
|
-
return s.replace(/\\\\/g, "\\").replace(/\$\{([A-Za-z0-9\.\-\_]*)\}/g, function(
|
|
9179
|
-
return a.getLast(
|
|
9178
|
+
return s.replace(/\\\\/g, "\\").replace(/\$\{([A-Za-z0-9\.\-\_]*)\}/g, function(u) {
|
|
9179
|
+
return a.getLast(u.substring(2, u.length - 1));
|
|
9180
9180
|
});
|
|
9181
9181
|
}
|
|
9182
9182
|
getKeys() {
|
|
@@ -9186,7 +9186,7 @@ function ta() {
|
|
|
9186
9186
|
}
|
|
9187
9187
|
getMatchingKeys(s) {
|
|
9188
9188
|
let a = [];
|
|
9189
|
-
for (let
|
|
9189
|
+
for (let u in this.objs) u.search(s) !== -1 && a.push(u);
|
|
9190
9190
|
return a;
|
|
9191
9191
|
}
|
|
9192
9192
|
reset() {
|
|
@@ -9201,7 +9201,7 @@ function ta() {
|
|
|
9201
9201
|
return Ht.of = n, Ht;
|
|
9202
9202
|
}
|
|
9203
9203
|
c(ta, "requireDistNode");
|
|
9204
|
-
var ea = ta(), ra =
|
|
9204
|
+
var ea = ta(), ra = Cr(ea);
|
|
9205
9205
|
const rr = { root: "teamcity.build.workingDir", branch: "teamcity.build.branch" }, An = c((t) => {
|
|
9206
9206
|
try {
|
|
9207
9207
|
return ra.of(t);
|
|
@@ -9235,18 +9235,18 @@ var ia = { detect({ env: t }) {
|
|
|
9235
9235
|
return !!t.WERCKER_MAIN_PIPELINE_STARTED;
|
|
9236
9236
|
}, configuration({ env: t }) {
|
|
9237
9237
|
return { name: "Wercker", service: "wercker", commit: t.WERCKER_GIT_COMMIT, build: t.WERCKER_MAIN_PIPELINE_STARTED, buildUrl: t.WERCKER_RUN_URL, branch: t.WERCKER_GIT_BRANCH, slug: `${t.WERCKER_GIT_OWNER}/${t.WERCKER_GIT_REPOSITORY}`, root: t.WERCKER_ROOT };
|
|
9238
|
-
} },
|
|
9238
|
+
} }, la = { detect({ env: t }) {
|
|
9239
9239
|
return t.CI && t.CI === "woodpecker";
|
|
9240
9240
|
}, configuration({ env: t }) {
|
|
9241
9241
|
const e = t.CI_PIPELINE_EVENT === "pull_request";
|
|
9242
9242
|
return { name: "Woodpecker CI", service: "woodpecker", commit: t.CI_COMMIT_SHA, tag: t.CI_COMMIT_TAG, build: t.CI_PIPELINE_NUMBER, buildUrl: t.CI_PIPELINE_URL, branch: e ? t.CI_COMMIT_TARGET_BRANCH : t.CI_COMMIT_BRANCH, job: t.CI_STEP_NUMBER, jobUrl: t.CI_STEP_URL, pr: t.CI_COMMIT_PULL_REQUEST, isPr: e, prBranch: e ? t.CI_COMMIT_SOURCE_BRANCH : void 0, slug: `${t.CI_REPO_OWNER}/${t.CI_REPO_NAME}`, root: t.CI_WORKSPACE };
|
|
9243
|
-
} },
|
|
9243
|
+
} }, ua = { detect({ env: t }) {
|
|
9244
9244
|
return !!t.JB_SPACE_EXECUTION_NUMBER;
|
|
9245
9245
|
}, configuration({ env: t }) {
|
|
9246
9246
|
const e = t.JB_SPACE_PROJECT_KEY, r = t.JB_SPACE_GIT_REPOSITORY_NAME;
|
|
9247
9247
|
return { name: "JetBrains Space", service: "jetbrainsSpace", commit: t.JB_SPACE_GIT_REVISION, build: t.JB_SPACE_EXECUTION_NUMBER, branch: ee(t.JB_SPACE_GIT_BRANCH), slug: e && r ? `${e.toLowerCase()}/${r}` : void 0 };
|
|
9248
9248
|
} };
|
|
9249
|
-
const nr = { appveyor: As, azurePipelines:
|
|
9249
|
+
const nr = { appveyor: As, azurePipelines: bs, bamboo: ys, bitbucket: Us, bitrise: vs, buddy: Cs, buildkite: Oo, circleci: No, cirrus: Do, cloudflarePages: Mo, codebuild: xo, codefresh: $o, codeship: Go, drone: Ho, github: Wo, gitlab: Vo, jenkins: Ko, netlify: qo, puppet: Yo, sail: Qo, screwdriver: Jo, scrutinizer: zo, semaphore: Xo, shippable: Zo, teamcity: ia, travis: sa, vela: oa, vercel: aa, wercker: ca, woodpecker: la, jetbrainsSpace: ua };
|
|
9250
9250
|
var ir = c(({ env: t = process.env, cwd: e = process.cwd() } = {}) => {
|
|
9251
9251
|
for (const r of Object.keys(nr)) if (nr[r].detect({ env: t, cwd: e })) return { isCi: true, ...nr[r].configuration({ env: t, cwd: e }) };
|
|
9252
9252
|
return { isCi: !!t.CI, ...ko.configuration({ env: t, cwd: e }) };
|
|
@@ -9282,7 +9282,7 @@ function ma() {
|
|
|
9282
9282
|
return { hostname: Ee.hostname(), platform: Ee.platform() };
|
|
9283
9283
|
}
|
|
9284
9284
|
c(ma, "getMachineInfo");
|
|
9285
|
-
class
|
|
9285
|
+
class bn {
|
|
9286
9286
|
static {
|
|
9287
9287
|
c(this, "PendingPromiseTracker");
|
|
9288
9288
|
}
|
|
@@ -9317,44 +9317,54 @@ class yn {
|
|
|
9317
9317
|
}
|
|
9318
9318
|
}
|
|
9319
9319
|
function ga({ result: t, sensitiveValues: e }) {
|
|
9320
|
-
return t.steps.map((r) =>
|
|
9320
|
+
return t.steps.map((r) => yn({ sensitiveValues: e, step: r }));
|
|
9321
9321
|
}
|
|
9322
9322
|
c(ga, "extractSteps");
|
|
9323
|
-
function
|
|
9323
|
+
function yn({ sensitiveValues: t, step: e }) {
|
|
9324
9324
|
const r = c((n) => n && t?.length ? ot({ sensitiveValues: t, str: n }) : n, "scrub");
|
|
9325
|
-
return { category: e.category, duration: e.duration, error: e.error ? { message: r(e.error.message) || "Unknown error", stack: r(e.error.stack) } : void 0, location: e.location ? { column: e.location.column, file: e.location.file, line: e.location.line } : void 0, startedAt: new Date(e.startTime), steps: e.steps && e.steps.length > 0 ? e.steps.map((n) =>
|
|
9325
|
+
return { category: e.category, duration: e.duration, error: e.error ? { message: r(e.error.message) || "Unknown error", stack: r(e.error.stack) } : void 0, location: e.location ? { column: e.location.column, file: e.location.file, line: e.location.line } : void 0, startedAt: new Date(e.startTime), steps: e.steps && e.steps.length > 0 ? e.steps.map((n) => yn({ sensitiveValues: t, step: n })) : void 0, title: r(e.title) ?? e.title };
|
|
9326
9326
|
}
|
|
9327
|
-
c(
|
|
9327
|
+
c(yn, "extractStep");
|
|
9328
9328
|
class Ea {
|
|
9329
9329
|
static {
|
|
9330
9330
|
c(this, "UploadUrlWaitQueue");
|
|
9331
9331
|
}
|
|
9332
9332
|
waiters = /* @__PURE__ */ new Map();
|
|
9333
9333
|
bufferedMessages = /* @__PURE__ */ new Map();
|
|
9334
|
-
|
|
9335
|
-
|
|
9336
|
-
|
|
9337
|
-
|
|
9338
|
-
|
|
9339
|
-
|
|
9340
|
-
}), i = this.bufferedMessages.get(e);
|
|
9341
|
-
return i !== void 0 ? (this.bufferedMessages.delete(e), this.resolveWait(e), { bufferedMessage: i, waitPromise: n }) : { waitPromise: n };
|
|
9334
|
+
abandonedWaits = /* @__PURE__ */ new Set();
|
|
9335
|
+
registerWait(e) {
|
|
9336
|
+
const r = new Promise((i) => {
|
|
9337
|
+
this.waiters.set(e, { resolve: i });
|
|
9338
|
+
}), n = this.bufferedMessages.get(e);
|
|
9339
|
+
return n !== void 0 ? (this.bufferedMessages.delete(e), this.resolveWait(e), { bufferedMessage: n, waitPromise: r }) : { waitPromise: r };
|
|
9342
9340
|
}
|
|
9343
9341
|
resolveOrBuffer(e, r) {
|
|
9342
|
+
if (this.abandonedWaits.has(e)) return false;
|
|
9344
9343
|
const n = this.waiters.get(e);
|
|
9345
|
-
return n ? (
|
|
9344
|
+
return n ? (n.resolve(), this.waiters.delete(e), this.bufferedMessages.delete(e), true) : (this.bufferedMessages.set(e, r), false);
|
|
9346
9345
|
}
|
|
9347
9346
|
resolveWait(e) {
|
|
9348
9347
|
const r = this.waiters.get(e);
|
|
9349
|
-
return r ? (
|
|
9348
|
+
return r ? (r.resolve(), this.waiters.delete(e), true) : false;
|
|
9350
9349
|
}
|
|
9351
|
-
|
|
9352
|
-
const
|
|
9353
|
-
return
|
|
9350
|
+
abandonWait(e) {
|
|
9351
|
+
const r = this.waiters.get(e);
|
|
9352
|
+
return r ? (r.resolve(), this.waiters.delete(e), this.abandonedWaits.add(e), true) : false;
|
|
9353
|
+
}
|
|
9354
|
+
abandonAllWaits() {
|
|
9355
|
+
const e = [];
|
|
9356
|
+
for (const [r, n] of this.waiters) n.resolve(), this.abandonedWaits.add(r), e.push(r);
|
|
9357
|
+
return this.waiters.clear(), e;
|
|
9358
|
+
}
|
|
9359
|
+
hasAbandonedWait(e) {
|
|
9360
|
+
return this.abandonedWaits.has(e);
|
|
9361
|
+
}
|
|
9362
|
+
clearAbandonedWait(e) {
|
|
9363
|
+
this.abandonedWaits.delete(e);
|
|
9354
9364
|
}
|
|
9355
9365
|
}
|
|
9356
9366
|
async function _a({ fileData: t, maxRetries: e = 3, requestTimeoutMs: r = 6e4, uploadUrl: n }) {
|
|
9357
|
-
await
|
|
9367
|
+
await Kn(async () => {
|
|
9358
9368
|
const i = new AbortController(), s = setTimeout(() => i.abort(), r);
|
|
9359
9369
|
let a;
|
|
9360
9370
|
try {
|
|
@@ -9362,16 +9372,16 @@ async function _a({ fileData: t, maxRetries: e = 3, requestTimeoutMs: r = 6e4, u
|
|
|
9362
9372
|
} finally {
|
|
9363
9373
|
clearTimeout(s);
|
|
9364
9374
|
}
|
|
9365
|
-
if (!a.ok)
|
|
9375
|
+
if (!a.ok) {
|
|
9376
|
+
const u = (await a.text()).trim(), h = u.length > 0 ? `${a.status}: ${a.statusText} - ${u}` : `${a.status}: ${a.statusText}`;
|
|
9377
|
+
throw console.error(`[StablyAI reporter] Upload request failed: ${h}`), a.status >= 400 && a.status < 500 ? new pRetryExports.AbortError(`Upload failed with status ${h}`) : new Error(`Upload failed with status ${h}`);
|
|
9378
|
+
}
|
|
9366
9379
|
}, { minTimeout: 2e3, randomize: true, retries: e });
|
|
9367
9380
|
}
|
|
9368
9381
|
c(_a, "uploadWithRetry");
|
|
9369
|
-
const Ia = process.env.STABLY_WS_URL || "wss://api.stably.ai/reporter", Sa =
|
|
9370
|
-
const r = [...new Set(e.allTests().map((n) => n.parent.project()?.name).filter((n) => !!n))];
|
|
9371
|
-
if (r.length > 0)
|
|
9372
|
-
const n = r.join(", ");
|
|
9373
|
-
return n.length <= ya ? n : `${r[0]} + ${r.length - 1} more`;
|
|
9374
|
-
}
|
|
9382
|
+
const Ia = process.env.STABLY_WS_URL || "wss://api.stably.ai/reporter", Sa = 300 * 1e3, Un = 3e4, Ra = 300 * 1e3, Ta = Number(process.env.STABLY_UPLOAD_REQUEST_TIMEOUT_MS) || 300 * 1e3, wa = [3e4, 6e4, 12e4, 3e5], Aa = process.env.STABLY_API_URL ?? "https://api.stably.ai", ba = c(({ gitInfo: t, suite: e }) => {
|
|
9383
|
+
const r = [...new Set(e.allTests().map((n) => n.parent.project()?.name).filter((n) => !!n))].sort((n, i) => n.localeCompare(i, "en"));
|
|
9384
|
+
if (r.length > 0) return r.join(", ");
|
|
9375
9385
|
if (t.isCI && t.ciServiceName && t.ciBuild) return `${t.ciServiceName} #${t.ciBuild}`;
|
|
9376
9386
|
try {
|
|
9377
9387
|
const { username: n } = Ee.userInfo();
|
|
@@ -9382,11 +9392,11 @@ const Ia = process.env.STABLY_WS_URL || "wss://api.stably.ai/reporter", Sa = 120
|
|
|
9382
9392
|
} catch {
|
|
9383
9393
|
}
|
|
9384
9394
|
return "Playwright Test Suite";
|
|
9385
|
-
}, "generateRunName"),
|
|
9395
|
+
}, "generateRunName"), ya = c(({ notificationConfigs: t, suite: e }) => {
|
|
9386
9396
|
if (!t || t.length === 0) return;
|
|
9387
9397
|
const r = new Set(e.allTests().map((i) => i.parent.project()?.name).filter(Boolean)), n = t.filter((i) => r.has(i.projectName));
|
|
9388
9398
|
return n.length > 0 ? n : void 0;
|
|
9389
|
-
}, "filterNotificationConfigsByRunningProjects"),
|
|
9399
|
+
}, "filterNotificationConfigsByRunningProjects"), Ua = c((t) => [...new Set(t.allTests().map((e) => e.parent.project()?.name).filter((e) => !!e))].sort((e, r) => e.localeCompare(r, "en")), "getRunningProjectNames"), va = c((t) => t ? { configFile: t.configFile, forbidOnly: t.forbidOnly, fullyParallel: t.fullyParallel, globalSetup: t.globalSetup, globalTeardown: t.globalTeardown, globalTimeout: t.globalTimeout, grep: t.grep?.toString(), grepInvert: t.grepInvert?.toString(), maxFailures: t.maxFailures, metadata: t.metadata, preserveOutput: t.preserveOutput, quiet: t.quiet, reporter: t.reporter, reportSlowTests: t.reportSlowTests, rootDir: t.rootDir, shard: t.shard, updateSnapshots: t.updateSnapshots, version: t.version, webServer: t.webServer, workers: t.workers } : void 0, "extractConfigInfo"), me = c((t) => t?.shard?.current, "getShardIndex"), sr = c(({ absolutePath: t, rootDir: e }) => {
|
|
9390
9400
|
if (e && t.startsWith(e)) {
|
|
9391
9401
|
const r = t.slice(e.length);
|
|
9392
9402
|
return r.startsWith("/") ? r.slice(1) : r;
|
|
@@ -9402,8 +9412,8 @@ class vn {
|
|
|
9402
9412
|
projectId;
|
|
9403
9413
|
source;
|
|
9404
9414
|
cliVersion;
|
|
9405
|
-
pendingOperations = new
|
|
9406
|
-
pendingUploads = new
|
|
9415
|
+
pendingOperations = new bn();
|
|
9416
|
+
pendingUploads = new bn();
|
|
9407
9417
|
testSuiteRunId = "";
|
|
9408
9418
|
createdSuiteRun;
|
|
9409
9419
|
suiteData;
|
|
@@ -9413,6 +9423,7 @@ class vn {
|
|
|
9413
9423
|
isListMode = false;
|
|
9414
9424
|
config;
|
|
9415
9425
|
skipSuiteReporting;
|
|
9426
|
+
suiteName;
|
|
9416
9427
|
notificationConfigs;
|
|
9417
9428
|
sensitiveValues;
|
|
9418
9429
|
filteredNotificationConfigs;
|
|
@@ -9422,33 +9433,39 @@ class vn {
|
|
|
9422
9433
|
pendingQueuedSpecs;
|
|
9423
9434
|
attachmentFiles = /* @__PURE__ */ new Map();
|
|
9424
9435
|
uploadUrlWaitQueue = new Ea();
|
|
9436
|
+
uploadUrlWaitLogState = /* @__PURE__ */ new Map();
|
|
9425
9437
|
constructor(e) {
|
|
9426
9438
|
const r = e?.apiKey ?? process.env.STABLY_API_KEY, n = e?.projectId ?? process.env.STABLY_PROJECT_ID, i = e?.source ?? process.env.STABLY_SOURCE, s = e?.cliVersion ?? process.env.STABLY_CLI_VERSION;
|
|
9427
9439
|
if (!r) throw new Error("STABLY_API_KEY is required. Provide it via options or environment variable.");
|
|
9428
9440
|
if (!n) throw new Error("STABLY_PROJECT_ID is required. Provide it via options or environment variable.");
|
|
9429
|
-
if (this.apiKey = r, this.projectId = n, this.source = i, this.cliVersion = s, this.notificationConfigs = e?.notificationConfigs, this.skipSuiteReporting = process.env.STABLY_INTERNAL_DISABLE_REPORTING === "1", e?.sensitiveValues?.length) {
|
|
9430
|
-
const a =
|
|
9431
|
-
this.sensitiveValues = [...a].sort((
|
|
9441
|
+
if (this.apiKey = r, this.projectId = n, this.source = i, this.cliVersion = s, this.suiteName = e?.suiteName, this.notificationConfigs = e?.notificationConfigs, this.skipSuiteReporting = process.env.STABLY_INTERNAL_DISABLE_REPORTING === "1", e?.sensitiveValues?.length) {
|
|
9442
|
+
const a = Vr(e.sensitiveValues);
|
|
9443
|
+
this.sensitiveValues = [...a].sort((u, h) => h.length - u.length);
|
|
9432
9444
|
}
|
|
9433
9445
|
this.wsClient = new ws({ apiKey: r, cliVersion: s, maxBufferSize: 1e3, maxReconnectAttempts: 3, onError: c((a) => this.handleWebSocketError(a), "onError"), onMessage: c((a) => this.handleWebSocketMessage(a), "onMessage"), projectId: n, reconnectDelay: 2e3, source: i, url: Ia });
|
|
9434
9446
|
}
|
|
9435
9447
|
handleUploadUrlsMessage(e) {
|
|
9436
|
-
const r = `${e.testId}-${e.attemptNumber}
|
|
9437
|
-
if (
|
|
9438
|
-
|
|
9439
|
-
|
|
9448
|
+
const r = `${e.testId}-${e.attemptNumber}`, n = this.clearUploadUrlWaitLogging(r), i = this.uploadUrlWaitQueue.hasAbandonedWait(r), s = this.uploadUrlWaitQueue.resolveOrBuffer(r, e);
|
|
9449
|
+
if (i) this.uploadUrlWaitQueue.clearAbandonedWait(r), console.warn(`[StablyAI reporter] Received upload_urls for test ${e.testId} attempt ${e.attemptNumber} after the reporter stopped waiting during shutdown (${e.uploadUrls.length} attachment(s)); continuing uploads`);
|
|
9450
|
+
else if (!s) {
|
|
9451
|
+
console.info(`[StablyAI reporter] Received upload_urls before wait registration for test ${e.testId} attempt ${e.attemptNumber} (${e.uploadUrls.length} attachment(s))`);
|
|
9452
|
+
return;
|
|
9453
|
+
}
|
|
9454
|
+
n !== void 0 && console.info(`[StablyAI reporter] Received upload_urls for test ${e.testId} attempt ${e.attemptNumber} after ${n}ms (${e.uploadUrls.length} attachment(s))`);
|
|
9455
|
+
const a = this.uploadAttachments({ attemptNumber: e.attemptNumber, testId: e.testId, uploadUrls: e.uploadUrls });
|
|
9456
|
+
this.pendingUploads.track(a);
|
|
9440
9457
|
}
|
|
9441
9458
|
onBegin(e, r) {
|
|
9442
9459
|
if (this.isListMode = process.argv.includes("--list"), this.isListMode || (r.allTests().length === 0 && process.exit(1), this.config = e, this.testSuiteRunId = this.getSuiteRunId(e), this.rootDir = e.rootDir, this.suite = r, this.skipSuiteReporting)) return;
|
|
9443
9460
|
this.suiteData = this.extractSuiteInfo(e, r);
|
|
9444
|
-
const i =
|
|
9461
|
+
const i = ya({ notificationConfigs: this.notificationConfigs, suite: r });
|
|
9445
9462
|
this.filteredNotificationConfigs = i;
|
|
9446
9463
|
const s = { ...this.suiteData, notificationRequest: i ? { notificationConfigs: i, shardIndex: me(this.config), totalShards: this.config?.shard?.total } : void 0, shardIndex: me(this.config), shardTotal: this.config?.shard?.total, status: "running" };
|
|
9447
9464
|
try {
|
|
9448
|
-
const d = fileURLToPath$1(new URL("./create-suite.mjs", import.meta.url)), g = JSON.stringify({ apiBaseUrl: Aa, apiKey: this.apiKey, body: s, cliVersion: this.cliVersion, projectId: this.projectId, source: this.source, timeoutMs:
|
|
9465
|
+
const d = fileURLToPath$1(new URL("./create-suite.mjs", import.meta.url)), g = JSON.stringify({ apiBaseUrl: Aa, apiKey: this.apiKey, body: s, cliVersion: this.cliVersion, projectId: this.projectId, source: this.source, timeoutMs: Un }), w = spawnSync(process.execPath, [d], { encoding: "utf-8", input: g, stdio: ["pipe", "pipe", "pipe"], timeout: Un + 5e3 });
|
|
9449
9466
|
if (w.status === 2 && (console.error(it.bold(it.red("[StablyAI reporter] Could not authenticate with the server. Either the API Key or Project ID is invalid. These can be provided via stablyReporter({ apiKey, projectId }) in playwright.config.ts or environment variables (STABLY_API_KEY, STABLY_PROJECT_ID). You can find your API key and Project ID at https://app.stably.ai/settings?tab=api-key"))), process.exit(1)), w.status !== 0) {
|
|
9450
|
-
const
|
|
9451
|
-
throw new Error(
|
|
9467
|
+
const U = w.stderr?.trim() || w.error?.message || "Unknown error";
|
|
9468
|
+
throw new Error(U);
|
|
9452
9469
|
}
|
|
9453
9470
|
this.createdSuiteRun = JSON.parse(w.stdout.trim()), console.log(it.cyan(`\u{1F4CA} View live results: ${it.bold(it.underline(this.createdSuiteRun.url))}
|
|
9454
9471
|
`));
|
|
@@ -9456,14 +9473,14 @@ class vn {
|
|
|
9456
9473
|
const g = d instanceof Error ? d.message : String(d);
|
|
9457
9474
|
console.warn(it.yellow(`[StablyAI reporter] Could not create suite before tests started: ${g}. Results will still be reported, but the results URL won't be available until tests complete.`)), this.pendingOperations.track(this.wsClient.sendEvent({ payload: s, type: "suite_start" }));
|
|
9458
9475
|
}
|
|
9459
|
-
const a = r.allTests(),
|
|
9476
|
+
const a = r.allTests(), u = /* @__PURE__ */ new Map();
|
|
9460
9477
|
for (const d of a) {
|
|
9461
9478
|
const g = Yt();
|
|
9462
9479
|
this.testIdMap.set(d.id, g);
|
|
9463
|
-
const w = d.parent.project(),
|
|
9464
|
-
|
|
9480
|
+
const w = d.parent.project(), U = sr({ absolutePath: d.location.file, rootDir: this.rootDir }), v = { annotations: d.annotations.length > 0 ? d.annotations.map((M) => ({ description: M.description, type: M.type })) : void 0, attemptNumber: 1, browserName: w?.use?.defaultBrowserType, expectedStatus: d.expectedStatus === "skipped" ? "skipped" : "passed", fullTitle: this.scrubSensitiveString(d.titlePath().join(" \u203A ")) ?? "", location: `${U}:${d.location.line}:${d.location.column}`, maxRetries: d.retries, projectName: w?.name, tags: d.tags.length > 0 ? d.tags : void 0, testIdentifier: d.id, title: this.scrubSensitiveString(d.title) ?? d.title }, D = u.get(U);
|
|
9481
|
+
D ? D.push(v) : u.set(U, [v]);
|
|
9465
9482
|
}
|
|
9466
|
-
const h = Array.from(
|
|
9483
|
+
const h = Array.from(u.entries()).map(([d, g]) => ({ filePath: d, tests: g }));
|
|
9467
9484
|
this.createdSuiteRun ? this.pendingOperations.track(this.wsClient.sendEvent({ payload: { specs: h, suiteId: this.testSuiteRunId }, type: "tests_queued" })) : this.pendingQueuedSpecs = h;
|
|
9468
9485
|
}
|
|
9469
9486
|
getSuiteRunId(e) {
|
|
@@ -9480,17 +9497,17 @@ class vn {
|
|
|
9480
9497
|
const n = this.extractTestCaseInfo(e, r);
|
|
9481
9498
|
this.testCases.push(n), this.testStepsMap.set(n.id, r);
|
|
9482
9499
|
const i = ga({ result: r, sensitiveValues: this.sensitiveValues }), s = [...r.attachments, { contentType: "text/plain", name: "source-code", path: e.location.file }], a = (async () => {
|
|
9483
|
-
const
|
|
9500
|
+
const u = await this.extractAttachmentMetadata({ attachments: s, attemptNumber: n.attemptNumber, testId: n.id });
|
|
9484
9501
|
let h, d;
|
|
9485
|
-
if (
|
|
9502
|
+
if (u.length > 0) {
|
|
9486
9503
|
h = `${n.id}-${n.attemptNumber}`;
|
|
9487
|
-
const { bufferedMessage: g, waitPromise: w } = this.uploadUrlWaitQueue.registerWait(h
|
|
9488
|
-
d = w, g
|
|
9504
|
+
const { bufferedMessage: g, waitPromise: w } = this.uploadUrlWaitQueue.registerWait(h);
|
|
9505
|
+
d = w, g ? this.handleUploadUrlsMessage(g) : this.startUploadUrlWaitLogging({ attachmentCount: u.length, attemptNumber: n.attemptNumber, testId: n.id, uploadUrlKey: h }), this.pendingOperations.track(d);
|
|
9489
9506
|
}
|
|
9490
9507
|
try {
|
|
9491
|
-
await this.wsClient.sendEvent({ payload: { ...n, attachments:
|
|
9508
|
+
await this.wsClient.sendEvent({ payload: { ...n, attachments: u, steps: i }, type: "test_end" });
|
|
9492
9509
|
} catch (g) {
|
|
9493
|
-
throw h && d && this.uploadUrlWaitQueue.resolveWait(h), g;
|
|
9510
|
+
throw h && d && (this.clearUploadUrlWaitLogging(h), this.uploadUrlWaitQueue.resolveWait(h)), g;
|
|
9494
9511
|
}
|
|
9495
9512
|
})();
|
|
9496
9513
|
this.pendingOperations.track(a);
|
|
@@ -9507,8 +9524,8 @@ class vn {
|
|
|
9507
9524
|
if (this.completedTestIds.has(d.id)) continue;
|
|
9508
9525
|
const g = this.testIdMap.get(d.id);
|
|
9509
9526
|
if (!g) continue;
|
|
9510
|
-
const w = d.parent.project(),
|
|
9511
|
-
this.pendingOperations.track(this.wsClient.sendEvent({ payload: { annotations: d.annotations.length > 0 ? d.annotations : void 0, attemptNumber: 1, browserName: w?.use?.defaultBrowserType, duration: 0, expectedStatus: d.expectedStatus, fullTitle: this.scrubSensitiveString(d.titlePath().join(" \u203A ")) ?? "", id: g, location: `${
|
|
9527
|
+
const w = d.parent.project(), U = sr({ absolutePath: d.location.file, rootDir: this.rootDir });
|
|
9528
|
+
this.pendingOperations.track(this.wsClient.sendEvent({ payload: { annotations: d.annotations.length > 0 ? d.annotations : void 0, attemptNumber: 1, browserName: w?.use?.defaultBrowserType, duration: 0, expectedStatus: d.expectedStatus, fullTitle: this.scrubSensitiveString(d.titlePath().join(" \u203A ")) ?? "", id: g, location: `${U}:${d.location.line}:${d.location.column}`, maxRetries: d.retries, outcome: "skipped", projectName: w?.name, retryCount: 0, startedAt: h, status: "skipped", suiteId: this.testSuiteRunId, tags: d.tags.length > 0 ? d.tags : void 0, testIdentifier: d.id, title: this.scrubSensitiveString(d.title) ?? d.title }, type: "test_end" }));
|
|
9512
9529
|
}
|
|
9513
9530
|
}
|
|
9514
9531
|
this.pendingOperations.track(this.wsClient.sendEvent({ payload: { duration: e.duration, notificationRequest: this.filteredNotificationConfigs ? { notificationConfigs: this.filteredNotificationConfigs, shardIndex: me(this.config), totalShards: this.config?.shard?.total } : void 0, shardIndex: me(this.config), shardTotal: this.config?.shard?.total, status: e.status === "timedout" ? "timedOut" : e.status, suiteId: this.testSuiteRunId }, type: "suite_end" })), Ie$1("[Stably reporter] Waiting for pending tasks to finish...");
|
|
@@ -9519,6 +9536,8 @@ class vn {
|
|
|
9519
9536
|
} catch (h) {
|
|
9520
9537
|
const d = h instanceof Error ? h.message : String(h);
|
|
9521
9538
|
console.warn(`[StablyAI reporter] Tasks timeout reached. Some operations may still be pending: ${d}`);
|
|
9539
|
+
const g = this.uploadUrlWaitQueue.abandonAllWaits();
|
|
9540
|
+
for (const w of g) this.clearUploadUrlWaitLogging(w);
|
|
9522
9541
|
} finally {
|
|
9523
9542
|
const h = this.pendingOperations.getProgress();
|
|
9524
9543
|
r.message(`${h.settled}/${h.total} tasks finished${h.failed > 0 ? `, ${h.failed} errors` : ""}`);
|
|
@@ -9537,11 +9556,11 @@ class vn {
|
|
|
9537
9556
|
}
|
|
9538
9557
|
n.stop("All file uploads finished"), this.wsClient.close();
|
|
9539
9558
|
try {
|
|
9540
|
-
const h =
|
|
9541
|
-
mkdirSync(h, { recursive: true }), writeFileSync(
|
|
9559
|
+
const h = Vt.join(this.rootDir, ".stably");
|
|
9560
|
+
mkdirSync(h, { recursive: true }), writeFileSync(Vt.join(h, "last-run.json"), JSON.stringify({ runId: this.testSuiteRunId, timestamp: Date.now() }));
|
|
9542
9561
|
} catch {
|
|
9543
9562
|
}
|
|
9544
|
-
const i = this.createdSuiteRun?.name || this.suiteData?.title || "Test Suite", s = e.status === "failed" || e.status === "timedout", a = this.suiteData?.isCI ?? !!process.env.CI,
|
|
9563
|
+
const i = this.createdSuiteRun?.name || this.suiteData?.title || "Test Suite", s = e.status === "failed" || e.status === "timedout", a = this.suiteData?.isCI ?? !!process.env.CI, u = s ? a ? `
|
|
9545
9564
|
|
|
9546
9565
|
\u{1F527} Auto-heal note:
|
|
9547
9566
|
If a "stably fix" step runs right after this test run, it may have already fixed these failures.
|
|
@@ -9550,18 +9569,18 @@ class vn {
|
|
|
9550
9569
|
\u{1F527} To auto-heal failed tests, run:
|
|
9551
9570
|
${it.bold(it.underline(`stably fix ${this.testSuiteRunId}`))}` : "";
|
|
9552
9571
|
Se$1(it.cyan(`\u2728 Suite "${it.bold(i)}" run complete!${this.createdSuiteRun ? `
|
|
9553
|
-
\u{1F4CA} View results: ${it.bold(it.underline(this.createdSuiteRun.url))}` : ""}${
|
|
9572
|
+
\u{1F4CA} View results: ${it.bold(it.underline(this.createdSuiteRun.url))}` : ""}${u}`));
|
|
9554
9573
|
}
|
|
9555
9574
|
scrubSensitiveString(e) {
|
|
9556
9575
|
return !e || !this.sensitiveValues?.length ? e : ot({ sensitiveValues: this.sensitiveValues, str: e });
|
|
9557
9576
|
}
|
|
9558
9577
|
extractSuiteInfo(e, r) {
|
|
9559
|
-
const n = ha(), i = ma(), s = /* @__PURE__ */ new Date();
|
|
9560
|
-
return { id: Yt(), projects:
|
|
9578
|
+
const n = ha(), i = ma(), s = /* @__PURE__ */ new Date(), a = this.suiteName || r.title || ba({ gitInfo: n, suite: r }), u = a.length > 500 ? `${a.slice(0, 497)}...` : a;
|
|
9579
|
+
return { id: Yt(), projects: Ua(r), projectSettings: va(e), startedAt: s, suiteId: this.testSuiteRunId, title: u, createdAt: s, git: { branch: n.branch, commit: { message: n.commit.message, sha: n.commit.sha }, pr: n.pr }, isCI: n.isCI, shards: e.shard?.total ?? 1, workers: e.workers, machineInfo: i, updatedAt: s };
|
|
9561
9580
|
}
|
|
9562
9581
|
extractTestCaseInfo(e, r) {
|
|
9563
|
-
const n = sr({ absolutePath: e.location.file, rootDir: this.rootDir }), i = e.parent.project(), s = i?.name, a = i?.use?.defaultBrowserType,
|
|
9564
|
-
return
|
|
9582
|
+
const n = sr({ absolutePath: e.location.file, rootDir: this.rootDir }), i = e.parent.project(), s = i?.name, a = i?.use?.defaultBrowserType, u = this.testIdMap.get(e.id), h = u ?? Yt();
|
|
9583
|
+
return u || this.testIdMap.set(e.id, h), { fullTitle: this.scrubSensitiveString(e.titlePath().join(" \u203A ")) ?? "", id: h, location: `${n}:${e.location.line}:${e.location.column}`, suiteId: this.testSuiteRunId, testIdentifier: e.id, title: this.scrubSensitiveString(e.title) ?? e.title, browserName: a, duration: r.duration, expectedStatus: e.expectedStatus, finishedAt: r.startTime && r.duration ? new Date(r.startTime.getTime() + r.duration) : void 0, outcome: e.outcome(), projectName: s, startedAt: new Date(r.startTime), status: r.status, attemptNumber: r.retry + 1, maxRetries: e.retries, retryCount: r.retry, errorMessage: this.scrubSensitiveString(r.error?.message), errorStack: this.scrubSensitiveString(r.error?.stack), errorType: r.error?.value, annotations: e.annotations.length > 0 ? e.annotations : void 0, tags: e.tags.length > 0 ? e.tags : void 0 };
|
|
9565
9584
|
}
|
|
9566
9585
|
async extractAttachmentMetadata({ attachments: e, attemptNumber: r, testId: n }) {
|
|
9567
9586
|
return (await Promise.all(e.map((s) => this.processAttachment({ attachment: s, attemptNumber: r, testId: n })))).filter((s) => s !== void 0);
|
|
@@ -9572,8 +9591,8 @@ class vn {
|
|
|
9572
9591
|
i = e.name === "trace" && e.path && this.sensitiveValues && this.sensitiveValues.length > 0 ? openSync(e.path, "r") : void 0;
|
|
9573
9592
|
const s = await this.getAttachmentFileData({ attachment: e, traceFd: i });
|
|
9574
9593
|
if (!s) return;
|
|
9575
|
-
const a = Yt(),
|
|
9576
|
-
return this.attachmentFiles.set(
|
|
9594
|
+
const a = Yt(), u = `${n}-${r}-${a}`;
|
|
9595
|
+
return this.attachmentFiles.set(u, s), { artifactId: a, attemptNumber: r, contentType: e.contentType, name: e.name, sizeBytes: s.length, testId: n };
|
|
9577
9596
|
} catch (s) {
|
|
9578
9597
|
const a = s instanceof Error ? s.message : String(s);
|
|
9579
9598
|
console.error(`[StablyAI reporter] Failed to read attachment ${e.name}: ${a}`);
|
|
@@ -9588,7 +9607,7 @@ class vn {
|
|
|
9588
9607
|
async getAttachmentFileData({ attachment: e, traceFd: r }) {
|
|
9589
9608
|
if (!e.path && !e.body) return;
|
|
9590
9609
|
if (e.name === "trace" && this.sensitiveValues && this.sensitiveValues.length > 0) {
|
|
9591
|
-
const i = e.path ? await this.scrubTraceFromFile({ attachmentPath: e.path, sensitiveValues: this.sensitiveValues, traceFd: r }) : e.body ? await
|
|
9610
|
+
const i = e.path ? await this.scrubTraceFromFile({ attachmentPath: e.path, sensitiveValues: this.sensitiveValues, traceFd: r }) : e.body ? await Ge({ sensitiveValues: this.sensitiveValues, traceBuffer: Buffer.from(e.body) }) : void 0;
|
|
9592
9611
|
return i ? Buffer.from(i) : void 0;
|
|
9593
9612
|
}
|
|
9594
9613
|
return e.body ? Buffer.from(e.body) : e.path ? readFileSync$1(e.path) : void 0;
|
|
@@ -9597,16 +9616,16 @@ class vn {
|
|
|
9597
9616
|
return n !== void 0 ? Is({ sensitiveValues: r, traceFd: n, tracePath: e }) : _s({ sensitiveValues: r, tracePath: e });
|
|
9598
9617
|
}
|
|
9599
9618
|
handleWebSocketError(e) {
|
|
9600
|
-
e.code ===
|
|
9619
|
+
e.code === Jr.AUTHENTICATION_FAILED && (console.error(it.bold(it.red("[StablyAI reporter] Could not authenticate with the server. Either the API Key or Project ID is invalid. These can be provided via stablyReporter({ apiKey, projectId }) in playwright.config.ts or environment variables (STABLY_API_KEY, STABLY_PROJECT_ID). You can find your API key and Project ID at https://app.stably.ai/settings?tab=api-key"))), process.exit(1)), console.error("[StablyAI reporter] Could not connect to the server. Please check your internet connection and try again."), process.exit(1);
|
|
9601
9620
|
}
|
|
9602
9621
|
handleWebSocketMessage(e) {
|
|
9603
9622
|
e.type === "suite_created" ? (this.createdSuiteRun = { id: e.id, name: e.name, url: e.url }, this.pendingQueuedSpecs && (this.pendingOperations.track(this.wsClient.sendEvent({ payload: { specs: this.pendingQueuedSpecs, suiteId: this.testSuiteRunId }, type: "tests_queued" })), this.pendingQueuedSpecs = void 0)) : e.type === "upload_urls" && this.handleUploadUrlsMessage(e);
|
|
9604
9623
|
}
|
|
9605
9624
|
async uploadAttachments({ attemptNumber: e, testId: r, uploadUrls: n }) {
|
|
9606
|
-
const i = n.map(async ({ artifactId: s, name: a, uploadUrl:
|
|
9625
|
+
const i = n.map(async ({ artifactId: s, name: a, uploadUrl: u }) => {
|
|
9607
9626
|
const h = `${r}-${e}-${s}`, d = this.attachmentFiles.get(h);
|
|
9608
9627
|
if (d) try {
|
|
9609
|
-
await _a({ fileData: d, maxRetries: 3, requestTimeoutMs:
|
|
9628
|
+
await _a({ fileData: d, maxRetries: 3, requestTimeoutMs: Ta, uploadUrl: u }), this.attachmentFiles.delete(h);
|
|
9610
9629
|
} catch (g) {
|
|
9611
9630
|
const w = g instanceof Error ? g.message : String(g);
|
|
9612
9631
|
console.error(`[StablyAI reporter] Failed to upload ${a} after retries: ${w}`);
|
|
@@ -9614,11 +9633,27 @@ class vn {
|
|
|
9614
9633
|
});
|
|
9615
9634
|
await Promise.allSettled(i);
|
|
9616
9635
|
}
|
|
9636
|
+
startUploadUrlWaitLogging({ attachmentCount: e, attemptNumber: r, testId: n, uploadUrlKey: i }) {
|
|
9637
|
+
const s = Date.now(), a = wa.map((u) => {
|
|
9638
|
+
const h = setTimeout(() => {
|
|
9639
|
+
console.warn(`[StablyAI reporter] Still waiting ${u}ms for upload_urls for test ${n} attempt ${r} (${e} attachment(s))`);
|
|
9640
|
+
}, u);
|
|
9641
|
+
return h.unref?.(), h;
|
|
9642
|
+
});
|
|
9643
|
+
this.uploadUrlWaitLogState.set(i, { attachmentCount: e, attemptNumber: r, startedAt: s, testId: n, timers: a });
|
|
9644
|
+
}
|
|
9645
|
+
clearUploadUrlWaitLogging(e) {
|
|
9646
|
+
const r = this.uploadUrlWaitLogState.get(e);
|
|
9647
|
+
if (r) {
|
|
9648
|
+
for (const n of r.timers) clearTimeout(n);
|
|
9649
|
+
return this.uploadUrlWaitLogState.delete(e), Date.now() - r.startedAt;
|
|
9650
|
+
}
|
|
9651
|
+
}
|
|
9617
9652
|
}
|
|
9618
|
-
function
|
|
9653
|
+
function Ca(t) {
|
|
9619
9654
|
return ["@stablyai/playwright-test/reporter", t];
|
|
9620
9655
|
}
|
|
9621
|
-
c(
|
|
9656
|
+
c(Ca, "stablyReporter");
|
|
9622
9657
|
|
|
9623
|
-
export {
|
|
9624
|
-
//# sourceMappingURL=index-
|
|
9658
|
+
export { Ca as C, vn as v };
|
|
9659
|
+
//# sourceMappingURL=index-D8lS6VkX.mjs.map
|