@forsakringskassan/docs-generator 2.28.3 → 2.28.5
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/{create-markdown-renderer-B-GhQWe3.mjs → create-markdown-renderer-CnFakUB4.mjs} +4 -4
- package/dist/create-markdown-renderer-CnFakUB4.mjs.map +1 -0
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/dist/markdown.mjs +3 -3
- package/dist/runtime.mjs +2677 -2492
- package/dist/tsconfig-path-bG7G_cK8.mjs.map +1 -1
- package/dist/{vendor-DufRLcxZ.mjs → vendor-zQuDI2ju.mjs} +259 -298
- package/dist/vendor-zQuDI2ju.mjs.map +1 -0
- package/dist/{vue3-C8LkYc_m.mjs → vue3-BruEOIIk.mjs} +2 -2
- package/dist/{vue3-C8LkYc_m.mjs.map → vue3-BruEOIIk.mjs.map} +1 -1
- package/dist/{worker-DdJLylZi.mjs → worker-BjvDvRzG.mjs} +3 -3
- package/dist/{worker-DdJLylZi.mjs.map → worker-BjvDvRzG.mjs.map} +1 -1
- package/package.json +1 -1
- package/dist/create-markdown-renderer-B-GhQWe3.mjs.map +0 -1
- package/dist/vendor-DufRLcxZ.mjs.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tsconfig-path-bG7G_cK8.mjs","sources":["../src/tsconfig-path.ts"],"sourcesContent":["import { fileURLToPath } from \"node:url\";\n\nconst path = new URL(\"../tsconfig-examples.json\", import.meta.url);\nexport const tsconfigPath = fileURLToPath(path);\n"],"names":[],"mappings":";;;;;;AAEA,MAAM,
|
|
1
|
+
{"version":3,"file":"tsconfig-path-bG7G_cK8.mjs","sources":["../src/tsconfig-path.ts"],"sourcesContent":["import { fileURLToPath } from \"node:url\";\n\nconst path = new URL(\"../tsconfig-examples.json\", import.meta.url);\nexport const tsconfigPath = fileURLToPath(path);\n"],"names":[],"mappings":";;;;;;AAEA,MAAM,IAAA,GAAO,IAAI,GAAA,CAAI,2BAAA,EAA6B,YAAY,GAAG,CAAA;AAC1D,MAAM,YAAA,GAAe,cAAc,IAAI;;;;"}
|
|
@@ -8390,296 +8390,251 @@ MarkdownIt.prototype.renderInline = function (src, env) {
|
|
|
8390
8390
|
return this.renderer.render(this.parseInline(src, env), this.options, env)
|
|
8391
8391
|
};
|
|
8392
8392
|
|
|
8393
|
-
|
|
8394
|
-
|
|
8395
|
-
|
|
8396
|
-
|
|
8397
|
-
|
|
8398
|
-
|
|
8399
|
-
|
|
8400
|
-
|
|
8401
|
-
|
|
8402
|
-
|
|
8403
|
-
|
|
8404
|
-
|
|
8405
|
-
|
|
8406
|
-
|
|
8407
|
-
|
|
8408
|
-
|
|
8409
|
-
|
|
8410
|
-
|
|
8411
|
-
|
|
8412
|
-
|
|
8413
|
-
|
|
8414
|
-
|
|
8415
|
-
|
|
8416
|
-
|
|
8417
|
-
|
|
8418
|
-
|
|
8419
|
-
|
|
8420
|
-
|
|
8421
|
-
|
|
8422
|
-
|
|
8423
|
-
|
|
8424
|
-
|
|
8425
|
-
|
|
8426
|
-
|
|
8427
|
-
|
|
8428
|
-
|
|
8429
|
-
|
|
8430
|
-
|
|
8431
|
-
|
|
8432
|
-
|
|
8433
|
-
|
|
8434
|
-
|
|
8435
|
-
|
|
8436
|
-
|
|
8437
|
-
|
|
8438
|
-
|
|
8439
|
-
|
|
8440
|
-
|
|
8441
|
-
|
|
8442
|
-
|
|
8443
|
-
|
|
8444
|
-
|
|
8445
|
-
|
|
8446
|
-
} else {
|
|
8447
|
-
beg = begs.pop();
|
|
8448
|
-
if (beg < left) {
|
|
8449
|
-
left = beg;
|
|
8450
|
-
right = bi;
|
|
8451
|
-
}
|
|
8452
|
-
|
|
8453
|
-
bi = str.indexOf(b, i + 1);
|
|
8454
|
-
}
|
|
8455
|
-
|
|
8456
|
-
i = ai < bi && ai >= 0 ? ai : bi;
|
|
8457
|
-
}
|
|
8458
|
-
|
|
8459
|
-
if (begs.length) {
|
|
8460
|
-
result = [ left, right ];
|
|
8461
|
-
}
|
|
8462
|
-
}
|
|
8393
|
+
const balanced = (a, b, str) => {
|
|
8394
|
+
const ma = a instanceof RegExp ? maybeMatch(a, str) : a;
|
|
8395
|
+
const mb = b instanceof RegExp ? maybeMatch(b, str) : b;
|
|
8396
|
+
const r = ma !== null && mb != null && range$1(ma, mb, str);
|
|
8397
|
+
return (r && {
|
|
8398
|
+
start: r[0],
|
|
8399
|
+
end: r[1],
|
|
8400
|
+
pre: str.slice(0, r[0]),
|
|
8401
|
+
body: str.slice(r[0] + ma.length, r[1]),
|
|
8402
|
+
post: str.slice(r[1] + mb.length),
|
|
8403
|
+
});
|
|
8404
|
+
};
|
|
8405
|
+
const maybeMatch = (reg, str) => {
|
|
8406
|
+
const m = str.match(reg);
|
|
8407
|
+
return m ? m[0] : null;
|
|
8408
|
+
};
|
|
8409
|
+
const range$1 = (a, b, str) => {
|
|
8410
|
+
let begs, beg, left, right = undefined, result;
|
|
8411
|
+
let ai = str.indexOf(a);
|
|
8412
|
+
let bi = str.indexOf(b, ai + 1);
|
|
8413
|
+
let i = ai;
|
|
8414
|
+
if (ai >= 0 && bi > 0) {
|
|
8415
|
+
if (a === b) {
|
|
8416
|
+
return [ai, bi];
|
|
8417
|
+
}
|
|
8418
|
+
begs = [];
|
|
8419
|
+
left = str.length;
|
|
8420
|
+
while (i >= 0 && !result) {
|
|
8421
|
+
if (i === ai) {
|
|
8422
|
+
begs.push(i);
|
|
8423
|
+
ai = str.indexOf(a, i + 1);
|
|
8424
|
+
}
|
|
8425
|
+
else if (begs.length === 1) {
|
|
8426
|
+
const r = begs.pop();
|
|
8427
|
+
if (r !== undefined)
|
|
8428
|
+
result = [r, bi];
|
|
8429
|
+
}
|
|
8430
|
+
else {
|
|
8431
|
+
beg = begs.pop();
|
|
8432
|
+
if (beg !== undefined && beg < left) {
|
|
8433
|
+
left = beg;
|
|
8434
|
+
right = bi;
|
|
8435
|
+
}
|
|
8436
|
+
bi = str.indexOf(b, i + 1);
|
|
8437
|
+
}
|
|
8438
|
+
i = ai < bi && ai >= 0 ? ai : bi;
|
|
8439
|
+
}
|
|
8440
|
+
if (begs.length && right !== undefined) {
|
|
8441
|
+
result = [left, right];
|
|
8442
|
+
}
|
|
8443
|
+
}
|
|
8444
|
+
return result;
|
|
8445
|
+
};
|
|
8463
8446
|
|
|
8464
|
-
|
|
8465
|
-
|
|
8466
|
-
|
|
8447
|
+
const escSlash = '\0SLASH' + Math.random() + '\0';
|
|
8448
|
+
const escOpen = '\0OPEN' + Math.random() + '\0';
|
|
8449
|
+
const escClose = '\0CLOSE' + Math.random() + '\0';
|
|
8450
|
+
const escComma = '\0COMMA' + Math.random() + '\0';
|
|
8451
|
+
const escPeriod = '\0PERIOD' + Math.random() + '\0';
|
|
8452
|
+
const escSlashPattern = new RegExp(escSlash, 'g');
|
|
8453
|
+
const escOpenPattern = new RegExp(escOpen, 'g');
|
|
8454
|
+
const escClosePattern = new RegExp(escClose, 'g');
|
|
8455
|
+
const escCommaPattern = new RegExp(escComma, 'g');
|
|
8456
|
+
const escPeriodPattern = new RegExp(escPeriod, 'g');
|
|
8457
|
+
const slashPattern = /\\\\/g;
|
|
8458
|
+
const openPattern = /\\{/g;
|
|
8459
|
+
const closePattern = /\\}/g;
|
|
8460
|
+
const commaPattern = /\\,/g;
|
|
8461
|
+
const periodPattern = /\\./g;
|
|
8462
|
+
function numeric(str) {
|
|
8463
|
+
return !isNaN(str) ? parseInt(str, 10) : str.charCodeAt(0);
|
|
8464
|
+
}
|
|
8465
|
+
function escapeBraces(str) {
|
|
8466
|
+
return str
|
|
8467
|
+
.replace(slashPattern, escSlash)
|
|
8468
|
+
.replace(openPattern, escOpen)
|
|
8469
|
+
.replace(closePattern, escClose)
|
|
8470
|
+
.replace(commaPattern, escComma)
|
|
8471
|
+
.replace(periodPattern, escPeriod);
|
|
8472
|
+
}
|
|
8473
|
+
function unescapeBraces(str) {
|
|
8474
|
+
return str
|
|
8475
|
+
.replace(escSlashPattern, '\\')
|
|
8476
|
+
.replace(escOpenPattern, '{')
|
|
8477
|
+
.replace(escClosePattern, '}')
|
|
8478
|
+
.replace(escCommaPattern, ',')
|
|
8479
|
+
.replace(escPeriodPattern, '.');
|
|
8467
8480
|
}
|
|
8468
|
-
|
|
8469
|
-
|
|
8470
|
-
|
|
8471
|
-
|
|
8472
|
-
|
|
8473
|
-
|
|
8474
|
-
|
|
8475
|
-
|
|
8476
|
-
|
|
8477
|
-
|
|
8478
|
-
|
|
8479
|
-
|
|
8480
|
-
|
|
8481
|
-
|
|
8482
|
-
|
|
8483
|
-
|
|
8484
|
-
|
|
8485
|
-
|
|
8486
|
-
|
|
8487
|
-
|
|
8488
|
-
|
|
8489
|
-
|
|
8490
|
-
|
|
8491
|
-
|
|
8492
|
-
|
|
8493
|
-
|
|
8494
|
-
|
|
8495
|
-
|
|
8496
|
-
|
|
8497
|
-
|
|
8498
|
-
|
|
8499
|
-
|
|
8500
|
-
|
|
8501
|
-
|
|
8502
|
-
|
|
8503
|
-
|
|
8504
|
-
|
|
8505
|
-
|
|
8506
|
-
|
|
8507
|
-
|
|
8508
|
-
|
|
8509
|
-
|
|
8510
|
-
|
|
8511
|
-
|
|
8512
|
-
|
|
8513
|
-
|
|
8514
|
-
|
|
8515
|
-
|
|
8516
|
-
|
|
8517
|
-
|
|
8518
|
-
|
|
8519
|
-
|
|
8520
|
-
|
|
8521
|
-
|
|
8522
|
-
|
|
8523
|
-
|
|
8524
|
-
|
|
8525
|
-
|
|
8526
|
-
|
|
8527
|
-
|
|
8528
|
-
|
|
8529
|
-
|
|
8530
|
-
|
|
8531
|
-
|
|
8532
|
-
|
|
8533
|
-
|
|
8534
|
-
|
|
8535
|
-
|
|
8536
|
-
|
|
8537
|
-
|
|
8538
|
-
|
|
8539
|
-
|
|
8540
|
-
|
|
8541
|
-
|
|
8542
|
-
|
|
8543
|
-
|
|
8544
|
-
|
|
8545
|
-
|
|
8546
|
-
|
|
8547
|
-
|
|
8548
|
-
|
|
8549
|
-
|
|
8550
|
-
|
|
8551
|
-
|
|
8552
|
-
|
|
8553
|
-
|
|
8554
|
-
|
|
8555
|
-
|
|
8556
|
-
|
|
8557
|
-
|
|
8558
|
-
|
|
8559
|
-
|
|
8560
|
-
|
|
8561
|
-
|
|
8562
|
-
|
|
8563
|
-
|
|
8564
|
-
|
|
8565
|
-
|
|
8566
|
-
|
|
8567
|
-
|
|
8568
|
-
|
|
8569
|
-
|
|
8570
|
-
|
|
8571
|
-
|
|
8572
|
-
|
|
8573
|
-
|
|
8574
|
-
|
|
8575
|
-
|
|
8576
|
-
|
|
8577
|
-
|
|
8578
|
-
|
|
8579
|
-
|
|
8580
|
-
|
|
8581
|
-
|
|
8582
|
-
|
|
8583
|
-
|
|
8584
|
-
|
|
8585
|
-
|
|
8586
|
-
|
|
8587
|
-
|
|
8588
|
-
|
|
8589
|
-
|
|
8590
|
-
|
|
8591
|
-
|
|
8592
|
-
|
|
8593
|
-
|
|
8594
|
-
|
|
8595
|
-
|
|
8596
|
-
|
|
8597
|
-
|
|
8598
|
-
|
|
8599
|
-
|
|
8600
|
-
|
|
8601
|
-
|
|
8602
|
-
|
|
8603
|
-
|
|
8604
|
-
|
|
8605
|
-
|
|
8606
|
-
|
|
8607
|
-
|
|
8608
|
-
|
|
8609
|
-
|
|
8610
|
-
|
|
8611
|
-
|
|
8612
|
-
|
|
8613
|
-
|
|
8614
|
-
|
|
8615
|
-
|
|
8616
|
-
|
|
8617
|
-
|
|
8618
|
-
|
|
8619
|
-
|
|
8620
|
-
|
|
8621
|
-
|
|
8622
|
-
|
|
8623
|
-
var width = Math.max(n[0].length, n[1].length);
|
|
8624
|
-
var incr = n.length == 3
|
|
8625
|
-
? Math.abs(numeric(n[2]))
|
|
8626
|
-
: 1;
|
|
8627
|
-
var test = lte;
|
|
8628
|
-
var reverse = y < x;
|
|
8629
|
-
if (reverse) {
|
|
8630
|
-
incr *= -1;
|
|
8631
|
-
test = gte;
|
|
8632
|
-
}
|
|
8633
|
-
var pad = n.some(isPadded);
|
|
8634
|
-
|
|
8635
|
-
N = [];
|
|
8636
|
-
|
|
8637
|
-
for (var i = x; test(i, y); i += incr) {
|
|
8638
|
-
var c;
|
|
8639
|
-
if (isAlphaSequence) {
|
|
8640
|
-
c = String.fromCharCode(i);
|
|
8641
|
-
if (c === '\\')
|
|
8642
|
-
c = '';
|
|
8643
|
-
} else {
|
|
8644
|
-
c = String(i);
|
|
8645
|
-
if (pad) {
|
|
8646
|
-
var need = width - c.length;
|
|
8647
|
-
if (need > 0) {
|
|
8648
|
-
var z = new Array(need + 1).join('0');
|
|
8649
|
-
if (i < 0)
|
|
8650
|
-
c = '-' + z + c.slice(1);
|
|
8651
|
-
else
|
|
8652
|
-
c = z + c;
|
|
8653
|
-
}
|
|
8654
|
-
}
|
|
8655
|
-
}
|
|
8656
|
-
N.push(c);
|
|
8657
|
-
}
|
|
8658
|
-
} else {
|
|
8659
|
-
N = [];
|
|
8660
|
-
|
|
8661
|
-
for (var j = 0; j < n.length; j++) {
|
|
8662
|
-
N.push.apply(N, expand(n[j], false));
|
|
8663
|
-
}
|
|
8664
|
-
}
|
|
8665
|
-
|
|
8666
|
-
for (var j = 0; j < N.length; j++) {
|
|
8667
|
-
for (var k = 0; k < post.length; k++) {
|
|
8668
|
-
var expansion = pre + N[j] + post[k];
|
|
8669
|
-
if (!isTop || isSequence || expansion)
|
|
8670
|
-
expansions.push(expansion);
|
|
8671
|
-
}
|
|
8672
|
-
}
|
|
8673
|
-
}
|
|
8674
|
-
|
|
8675
|
-
return expansions;
|
|
8676
|
-
}
|
|
8677
|
-
return braceExpansion;
|
|
8481
|
+
/**
|
|
8482
|
+
* Basically just str.split(","), but handling cases
|
|
8483
|
+
* where we have nested braced sections, which should be
|
|
8484
|
+
* treated as individual members, like {a,{b,c},d}
|
|
8485
|
+
*/
|
|
8486
|
+
function parseCommaParts(str) {
|
|
8487
|
+
if (!str) {
|
|
8488
|
+
return [''];
|
|
8489
|
+
}
|
|
8490
|
+
const parts = [];
|
|
8491
|
+
const m = balanced('{', '}', str);
|
|
8492
|
+
if (!m) {
|
|
8493
|
+
return str.split(',');
|
|
8494
|
+
}
|
|
8495
|
+
const { pre, body, post } = m;
|
|
8496
|
+
const p = pre.split(',');
|
|
8497
|
+
p[p.length - 1] += '{' + body + '}';
|
|
8498
|
+
const postParts = parseCommaParts(post);
|
|
8499
|
+
if (post.length) {
|
|
8500
|
+
p[p.length - 1] += postParts.shift();
|
|
8501
|
+
p.push.apply(p, postParts);
|
|
8502
|
+
}
|
|
8503
|
+
parts.push.apply(parts, p);
|
|
8504
|
+
return parts;
|
|
8505
|
+
}
|
|
8506
|
+
function expand(str) {
|
|
8507
|
+
if (!str) {
|
|
8508
|
+
return [];
|
|
8509
|
+
}
|
|
8510
|
+
// I don't know why Bash 4.3 does this, but it does.
|
|
8511
|
+
// Anything starting with {} will have the first two bytes preserved
|
|
8512
|
+
// but *only* at the top level, so {},a}b will not expand to anything,
|
|
8513
|
+
// but a{},b}c will be expanded to [a}c,abc].
|
|
8514
|
+
// One could argue that this is a bug in Bash, but since the goal of
|
|
8515
|
+
// this module is to match Bash's rules, we escape a leading {}
|
|
8516
|
+
if (str.slice(0, 2) === '{}') {
|
|
8517
|
+
str = '\\{\\}' + str.slice(2);
|
|
8518
|
+
}
|
|
8519
|
+
return expand_(escapeBraces(str), true).map(unescapeBraces);
|
|
8520
|
+
}
|
|
8521
|
+
function embrace(str) {
|
|
8522
|
+
return '{' + str + '}';
|
|
8523
|
+
}
|
|
8524
|
+
function isPadded(el) {
|
|
8525
|
+
return /^-?0\d/.test(el);
|
|
8526
|
+
}
|
|
8527
|
+
function lte(i, y) {
|
|
8528
|
+
return i <= y;
|
|
8529
|
+
}
|
|
8530
|
+
function gte(i, y) {
|
|
8531
|
+
return i >= y;
|
|
8532
|
+
}
|
|
8533
|
+
function expand_(str, isTop) {
|
|
8534
|
+
/** @type {string[]} */
|
|
8535
|
+
const expansions = [];
|
|
8536
|
+
const m = balanced('{', '}', str);
|
|
8537
|
+
if (!m)
|
|
8538
|
+
return [str];
|
|
8539
|
+
// no need to expand pre, since it is guaranteed to be free of brace-sets
|
|
8540
|
+
const pre = m.pre;
|
|
8541
|
+
const post = m.post.length ? expand_(m.post, false) : [''];
|
|
8542
|
+
if (/\$$/.test(m.pre)) {
|
|
8543
|
+
for (let k = 0; k < post.length; k++) {
|
|
8544
|
+
const expansion = pre + '{' + m.body + '}' + post[k];
|
|
8545
|
+
expansions.push(expansion);
|
|
8546
|
+
}
|
|
8547
|
+
}
|
|
8548
|
+
else {
|
|
8549
|
+
const isNumericSequence = /^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(m.body);
|
|
8550
|
+
const isAlphaSequence = /^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(m.body);
|
|
8551
|
+
const isSequence = isNumericSequence || isAlphaSequence;
|
|
8552
|
+
const isOptions = m.body.indexOf(',') >= 0;
|
|
8553
|
+
if (!isSequence && !isOptions) {
|
|
8554
|
+
// {a},b}
|
|
8555
|
+
if (m.post.match(/,(?!,).*\}/)) {
|
|
8556
|
+
str = m.pre + '{' + m.body + escClose + m.post;
|
|
8557
|
+
return expand_(str);
|
|
8558
|
+
}
|
|
8559
|
+
return [str];
|
|
8560
|
+
}
|
|
8561
|
+
let n;
|
|
8562
|
+
if (isSequence) {
|
|
8563
|
+
n = m.body.split(/\.\./);
|
|
8564
|
+
}
|
|
8565
|
+
else {
|
|
8566
|
+
n = parseCommaParts(m.body);
|
|
8567
|
+
if (n.length === 1 && n[0] !== undefined) {
|
|
8568
|
+
// x{{a,b}}y ==> x{a}y x{b}y
|
|
8569
|
+
n = expand_(n[0], false).map(embrace);
|
|
8570
|
+
//XXX is this necessary? Can't seem to hit it in tests.
|
|
8571
|
+
/* c8 ignore start */
|
|
8572
|
+
if (n.length === 1) {
|
|
8573
|
+
return post.map(p => m.pre + n[0] + p);
|
|
8574
|
+
}
|
|
8575
|
+
/* c8 ignore stop */
|
|
8576
|
+
}
|
|
8577
|
+
}
|
|
8578
|
+
// at this point, n is the parts, and we know it's not a comma set
|
|
8579
|
+
// with a single entry.
|
|
8580
|
+
let N;
|
|
8581
|
+
if (isSequence && n[0] !== undefined && n[1] !== undefined) {
|
|
8582
|
+
const x = numeric(n[0]);
|
|
8583
|
+
const y = numeric(n[1]);
|
|
8584
|
+
const width = Math.max(n[0].length, n[1].length);
|
|
8585
|
+
let incr = n.length === 3 && n[2] !== undefined ? Math.abs(numeric(n[2])) : 1;
|
|
8586
|
+
let test = lte;
|
|
8587
|
+
const reverse = y < x;
|
|
8588
|
+
if (reverse) {
|
|
8589
|
+
incr *= -1;
|
|
8590
|
+
test = gte;
|
|
8591
|
+
}
|
|
8592
|
+
const pad = n.some(isPadded);
|
|
8593
|
+
N = [];
|
|
8594
|
+
for (let i = x; test(i, y); i += incr) {
|
|
8595
|
+
let c;
|
|
8596
|
+
if (isAlphaSequence) {
|
|
8597
|
+
c = String.fromCharCode(i);
|
|
8598
|
+
if (c === '\\') {
|
|
8599
|
+
c = '';
|
|
8600
|
+
}
|
|
8601
|
+
}
|
|
8602
|
+
else {
|
|
8603
|
+
c = String(i);
|
|
8604
|
+
if (pad) {
|
|
8605
|
+
const need = width - c.length;
|
|
8606
|
+
if (need > 0) {
|
|
8607
|
+
const z = new Array(need + 1).join('0');
|
|
8608
|
+
if (i < 0) {
|
|
8609
|
+
c = '-' + z + c.slice(1);
|
|
8610
|
+
}
|
|
8611
|
+
else {
|
|
8612
|
+
c = z + c;
|
|
8613
|
+
}
|
|
8614
|
+
}
|
|
8615
|
+
}
|
|
8616
|
+
}
|
|
8617
|
+
N.push(c);
|
|
8618
|
+
}
|
|
8619
|
+
}
|
|
8620
|
+
else {
|
|
8621
|
+
N = [];
|
|
8622
|
+
for (let j = 0; j < n.length; j++) {
|
|
8623
|
+
N.push.apply(N, expand_(n[j], false));
|
|
8624
|
+
}
|
|
8625
|
+
}
|
|
8626
|
+
for (let j = 0; j < N.length; j++) {
|
|
8627
|
+
for (let k = 0; k < post.length; k++) {
|
|
8628
|
+
const expansion = pre + N[j] + post[k];
|
|
8629
|
+
if (!isTop || isSequence || expansion) {
|
|
8630
|
+
expansions.push(expansion);
|
|
8631
|
+
}
|
|
8632
|
+
}
|
|
8633
|
+
}
|
|
8634
|
+
}
|
|
8635
|
+
return expansions;
|
|
8678
8636
|
}
|
|
8679
8637
|
|
|
8680
|
-
var braceExpansionExports = requireBraceExpansion();
|
|
8681
|
-
var expand = /*@__PURE__*/getDefaultExportFromCjs(braceExpansionExports);
|
|
8682
|
-
|
|
8683
8638
|
const MAX_PATTERN_LENGTH = 1024 * 64;
|
|
8684
8639
|
const assertValidPattern = (pattern) => {
|
|
8685
8640
|
if (typeof pattern !== 'string') {
|
|
@@ -9339,7 +9294,7 @@ class AST {
|
|
|
9339
9294
|
return [s, unescape$1(this.toString()), false, false];
|
|
9340
9295
|
}
|
|
9341
9296
|
// XXX abstract out this map method
|
|
9342
|
-
let bodyDotAllowed = !repeated || allowDot || dot ||
|
|
9297
|
+
let bodyDotAllowed = !repeated || allowDot || dot || !startNoDot
|
|
9343
9298
|
? ''
|
|
9344
9299
|
: this.#partsToRegExp(true);
|
|
9345
9300
|
if (bodyDotAllowed === body) {
|
|
@@ -13068,7 +13023,7 @@ const IFLNK = 0b1010;
|
|
|
13068
13023
|
const IFSOCK = 0b1100;
|
|
13069
13024
|
const IFMT = 0b1111;
|
|
13070
13025
|
// mask to unset low 4 bits
|
|
13071
|
-
const IFMT_UNKNOWN =
|
|
13026
|
+
const IFMT_UNKNOWN = ~IFMT;
|
|
13072
13027
|
// set after successfully calling readdir() and getting entries.
|
|
13073
13028
|
const READDIR_CALLED = 0b0000_0001_0000;
|
|
13074
13029
|
// set after a successful lstat()
|
|
@@ -13381,7 +13336,7 @@ class PathBase {
|
|
|
13381
13336
|
}
|
|
13382
13337
|
const children = Object.assign([], { provisional: 0 });
|
|
13383
13338
|
this.#children.set(this, children);
|
|
13384
|
-
this.#type &=
|
|
13339
|
+
this.#type &= ~READDIR_CALLED;
|
|
13385
13340
|
return children;
|
|
13386
13341
|
}
|
|
13387
13342
|
/**
|
|
@@ -16306,6 +16261,12 @@ const glob = Object.assign(glob_, {
|
|
|
16306
16261
|
});
|
|
16307
16262
|
glob.glob = glob;
|
|
16308
16263
|
|
|
16264
|
+
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
16265
|
+
|
|
16266
|
+
function getDefaultExportFromCjs (x) {
|
|
16267
|
+
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
|
16268
|
+
}
|
|
16269
|
+
|
|
16309
16270
|
function commonjsRequire(path) {
|
|
16310
16271
|
throw new Error('Could not dynamically require "' + path + '". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.');
|
|
16311
16272
|
}
|
|
@@ -53325,7 +53286,7 @@ function requireSideChannelList () {
|
|
|
53325
53286
|
/** @type {import('./list.d.ts').listGet} */
|
|
53326
53287
|
var listGet = function (objects, key) {
|
|
53327
53288
|
if (!objects) {
|
|
53328
|
-
return void
|
|
53289
|
+
return void undefined;
|
|
53329
53290
|
}
|
|
53330
53291
|
var node = listGetNode(objects, key);
|
|
53331
53292
|
return node && node.value;
|
|
@@ -53378,7 +53339,7 @@ function requireSideChannelList () {
|
|
|
53378
53339
|
var root = $o && $o.next;
|
|
53379
53340
|
var deletedNode = listDelete($o, key);
|
|
53380
53341
|
if (deletedNode && root && root === deletedNode) {
|
|
53381
|
-
$o = void
|
|
53342
|
+
$o = void undefined;
|
|
53382
53343
|
}
|
|
53383
53344
|
return !!deletedNode;
|
|
53384
53345
|
},
|
|
@@ -53392,7 +53353,7 @@ function requireSideChannelList () {
|
|
|
53392
53353
|
if (!$o) {
|
|
53393
53354
|
// Initialize the linked list as an empty node, so that we don't have to special-case handling of the first node: we can always refer to it as (previous node).next, instead of something like (list).head
|
|
53394
53355
|
$o = {
|
|
53395
|
-
next: void
|
|
53356
|
+
next: void undefined
|
|
53396
53357
|
};
|
|
53397
53358
|
}
|
|
53398
53359
|
// eslint-disable-next-line no-extra-parens
|
|
@@ -54376,7 +54337,7 @@ function requireGetIntrinsic () {
|
|
|
54376
54337
|
if (!allowMissing) {
|
|
54377
54338
|
throw new $TypeError('base intrinsic for ' + name + ' exists, but the property is not available.');
|
|
54378
54339
|
}
|
|
54379
|
-
return void
|
|
54340
|
+
return void undefined$1;
|
|
54380
54341
|
}
|
|
54381
54342
|
if ($gOPD && (i + 1) >= parts.length) {
|
|
54382
54343
|
var desc = $gOPD(value, part);
|
|
@@ -54480,7 +54441,7 @@ function requireSideChannelMap () {
|
|
|
54480
54441
|
if ($m) {
|
|
54481
54442
|
var result = $mapDelete($m, key);
|
|
54482
54443
|
if ($mapSize($m) === 0) {
|
|
54483
|
-
$m = void
|
|
54444
|
+
$m = void undefined;
|
|
54484
54445
|
}
|
|
54485
54446
|
return result;
|
|
54486
54447
|
}
|
|
@@ -55009,7 +54970,7 @@ function requireStringify () {
|
|
|
55009
54970
|
encodeDotInKeys: false,
|
|
55010
54971
|
encoder: utils.encode,
|
|
55011
54972
|
encodeValuesOnly: false,
|
|
55012
|
-
filter: void
|
|
54973
|
+
filter: void undefined,
|
|
55013
54974
|
format: defaultFormat,
|
|
55014
54975
|
formatter: formats.formatters[defaultFormat],
|
|
55015
54976
|
// deprecated
|
|
@@ -55056,7 +55017,7 @@ function requireStringify () {
|
|
|
55056
55017
|
var tmpSc = sideChannel;
|
|
55057
55018
|
var step = 0;
|
|
55058
55019
|
var findFlag = false;
|
|
55059
|
-
while ((tmpSc = tmpSc.get(sentinel)) !== void
|
|
55020
|
+
while ((tmpSc = tmpSc.get(sentinel)) !== void undefined && !findFlag) {
|
|
55060
55021
|
// Where object last appeared in the ref tree
|
|
55061
55022
|
var pos = tmpSc.get(object);
|
|
55062
55023
|
step += 1;
|
|
@@ -55113,7 +55074,7 @@ function requireStringify () {
|
|
|
55113
55074
|
if (encodeValuesOnly && encoder) {
|
|
55114
55075
|
obj = utils.maybeMap(obj, encoder);
|
|
55115
55076
|
}
|
|
55116
|
-
objKeys = [{ value: obj.length > 0 ? obj.join(',') || null : void
|
|
55077
|
+
objKeys = [{ value: obj.length > 0 ? obj.join(',') || null : void undefined }];
|
|
55117
55078
|
} else if (isArray(filter)) {
|
|
55118
55079
|
objKeys = filter;
|
|
55119
55080
|
} else {
|
|
@@ -56160,4 +56121,4 @@ var srcExports = requireSrc();
|
|
|
56160
56121
|
var tinylr = /*@__PURE__*/getDefaultExportFromCjs(srcExports);
|
|
56161
56122
|
|
|
56162
56123
|
export { HighlightJS as H, MarkdownIt as M, createTwoFilesPatch as a, deflist_plugin as b, commonjsRequire as c, dedent as d, closest as e, distance as f, globSync as g, fm as h, isCI as i, glob as j, moduleImporter as k, cliProgress as l, minimatch as m, createInstance as n, fse as o, tinylr as t, watch$1 as w };
|
|
56163
|
-
//# sourceMappingURL=vendor-
|
|
56124
|
+
//# sourceMappingURL=vendor-zQuDI2ju.mjs.map
|