@forsakringskassan/docs-generator 2.28.3 → 2.28.4

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.
@@ -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
- var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
8394
-
8395
- function getDefaultExportFromCjs (x) {
8396
- return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
8397
- }
8398
-
8399
- var balancedMatch;
8400
- var hasRequiredBalancedMatch;
8401
-
8402
- function requireBalancedMatch () {
8403
- if (hasRequiredBalancedMatch) return balancedMatch;
8404
- hasRequiredBalancedMatch = 1;
8405
- balancedMatch = balanced;
8406
- function balanced(a, b, str) {
8407
- if (a instanceof RegExp) a = maybeMatch(a, str);
8408
- if (b instanceof RegExp) b = maybeMatch(b, str);
8409
-
8410
- var r = range(a, b, str);
8411
-
8412
- return r && {
8413
- start: r[0],
8414
- end: r[1],
8415
- pre: str.slice(0, r[0]),
8416
- body: str.slice(r[0] + a.length, r[1]),
8417
- post: str.slice(r[1] + b.length)
8418
- };
8419
- }
8420
-
8421
- function maybeMatch(reg, str) {
8422
- var m = str.match(reg);
8423
- return m ? m[0] : null;
8424
- }
8425
-
8426
- balanced.range = range;
8427
- function range(a, b, str) {
8428
- var begs, beg, left, right, result;
8429
- var ai = str.indexOf(a);
8430
- var bi = str.indexOf(b, ai + 1);
8431
- var i = ai;
8432
-
8433
- if (ai >= 0 && bi > 0) {
8434
- if(a===b) {
8435
- return [ai, bi];
8436
- }
8437
- begs = [];
8438
- left = str.length;
8439
-
8440
- while (i >= 0 && !result) {
8441
- if (i == ai) {
8442
- begs.push(i);
8443
- ai = str.indexOf(a, i + 1);
8444
- } else if (begs.length == 1) {
8445
- result = [ begs.pop(), bi ];
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
- return result;
8465
- }
8466
- return balancedMatch;
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
- var braceExpansion;
8470
- var hasRequiredBraceExpansion;
8471
-
8472
- function requireBraceExpansion () {
8473
- if (hasRequiredBraceExpansion) return braceExpansion;
8474
- hasRequiredBraceExpansion = 1;
8475
- var balanced = requireBalancedMatch();
8476
-
8477
- braceExpansion = expandTop;
8478
-
8479
- var escSlash = '\0SLASH'+Math.random()+'\0';
8480
- var escOpen = '\0OPEN'+Math.random()+'\0';
8481
- var escClose = '\0CLOSE'+Math.random()+'\0';
8482
- var escComma = '\0COMMA'+Math.random()+'\0';
8483
- var escPeriod = '\0PERIOD'+Math.random()+'\0';
8484
-
8485
- function numeric(str) {
8486
- return parseInt(str, 10) == str
8487
- ? parseInt(str, 10)
8488
- : str.charCodeAt(0);
8489
- }
8490
-
8491
- function escapeBraces(str) {
8492
- return str.split('\\\\').join(escSlash)
8493
- .split('\\{').join(escOpen)
8494
- .split('\\}').join(escClose)
8495
- .split('\\,').join(escComma)
8496
- .split('\\.').join(escPeriod);
8497
- }
8498
-
8499
- function unescapeBraces(str) {
8500
- return str.split(escSlash).join('\\')
8501
- .split(escOpen).join('{')
8502
- .split(escClose).join('}')
8503
- .split(escComma).join(',')
8504
- .split(escPeriod).join('.');
8505
- }
8506
-
8507
-
8508
- // Basically just str.split(","), but handling cases
8509
- // where we have nested braced sections, which should be
8510
- // treated as individual members, like {a,{b,c},d}
8511
- function parseCommaParts(str) {
8512
- if (!str)
8513
- return [''];
8514
-
8515
- var parts = [];
8516
- var m = balanced('{', '}', str);
8517
-
8518
- if (!m)
8519
- return str.split(',');
8520
-
8521
- var pre = m.pre;
8522
- var body = m.body;
8523
- var post = m.post;
8524
- var p = pre.split(',');
8525
-
8526
- p[p.length-1] += '{' + body + '}';
8527
- var postParts = parseCommaParts(post);
8528
- if (post.length) {
8529
- p[p.length-1] += postParts.shift();
8530
- p.push.apply(p, postParts);
8531
- }
8532
-
8533
- parts.push.apply(parts, p);
8534
-
8535
- return parts;
8536
- }
8537
-
8538
- function expandTop(str) {
8539
- if (!str)
8540
- return [];
8541
-
8542
- // I don't know why Bash 4.3 does this, but it does.
8543
- // Anything starting with {} will have the first two bytes preserved
8544
- // but *only* at the top level, so {},a}b will not expand to anything,
8545
- // but a{},b}c will be expanded to [a}c,abc].
8546
- // One could argue that this is a bug in Bash, but since the goal of
8547
- // this module is to match Bash's rules, we escape a leading {}
8548
- if (str.substr(0, 2) === '{}') {
8549
- str = '\\{\\}' + str.substr(2);
8550
- }
8551
-
8552
- return expand(escapeBraces(str), true).map(unescapeBraces);
8553
- }
8554
-
8555
- function embrace(str) {
8556
- return '{' + str + '}';
8557
- }
8558
- function isPadded(el) {
8559
- return /^-?0\d/.test(el);
8560
- }
8561
-
8562
- function lte(i, y) {
8563
- return i <= y;
8564
- }
8565
- function gte(i, y) {
8566
- return i >= y;
8567
- }
8568
-
8569
- function expand(str, isTop) {
8570
- var expansions = [];
8571
-
8572
- var m = balanced('{', '}', str);
8573
- if (!m) return [str];
8574
-
8575
- // no need to expand pre, since it is guaranteed to be free of brace-sets
8576
- var pre = m.pre;
8577
- var post = m.post.length
8578
- ? expand(m.post, false)
8579
- : [''];
8580
-
8581
- if (/\$$/.test(m.pre)) {
8582
- for (var k = 0; k < post.length; k++) {
8583
- var expansion = pre+ '{' + m.body + '}' + post[k];
8584
- expansions.push(expansion);
8585
- }
8586
- } else {
8587
- var isNumericSequence = /^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(m.body);
8588
- var isAlphaSequence = /^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(m.body);
8589
- var isSequence = isNumericSequence || isAlphaSequence;
8590
- var isOptions = m.body.indexOf(',') >= 0;
8591
- if (!isSequence && !isOptions) {
8592
- // {a},b}
8593
- if (m.post.match(/,.*\}/)) {
8594
- str = m.pre + '{' + m.body + escClose + m.post;
8595
- return expand(str);
8596
- }
8597
- return [str];
8598
- }
8599
-
8600
- var n;
8601
- if (isSequence) {
8602
- n = m.body.split(/\.\./);
8603
- } else {
8604
- n = parseCommaParts(m.body);
8605
- if (n.length === 1) {
8606
- // x{{a,b}}y ==> x{a}y x{b}y
8607
- n = expand(n[0], false).map(embrace);
8608
- if (n.length === 1) {
8609
- return post.map(function(p) {
8610
- return m.pre + n[0] + p;
8611
- });
8612
- }
8613
- }
8614
- }
8615
-
8616
- // at this point, n is the parts, and we know it's not a comma set
8617
- // with a single entry.
8618
- var N;
8619
-
8620
- if (isSequence) {
8621
- var x = numeric(n[0]);
8622
- var y = numeric(n[1]);
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 || false
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 = -16;
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 &= -17;
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 0;
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 0;
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 0
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 0;
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 0;
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 0,
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 0 && !findFlag) {
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 0 }];
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-DufRLcxZ.mjs.map
56124
+ //# sourceMappingURL=vendor-zQuDI2ju.mjs.map