@isdk/util 0.3.9 → 0.3.10

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.
Files changed (64) hide show
  1. package/dist/index.d.mts +247 -142
  2. package/dist/index.d.ts +247 -142
  3. package/dist/index.js +1 -1
  4. package/dist/index.mjs +1 -1
  5. package/docs/classes/BinarySemaphore.md +145 -64
  6. package/docs/classes/ConfigFile.md +8 -8
  7. package/docs/classes/Deque.md +109 -105
  8. package/docs/classes/IntSet.md +12 -12
  9. package/docs/classes/Semaphore.md +149 -77
  10. package/docs/classes/SignalGate.md +11 -11
  11. package/docs/functions/RateLimit.md +30 -7
  12. package/docs/functions/arrayHasAll.md +1 -1
  13. package/docs/functions/extNameLevel.md +1 -1
  14. package/docs/functions/extractCodeBlock.md +3 -3
  15. package/docs/functions/extractTopLevelCodeBlocks.md +1 -1
  16. package/docs/functions/filenameReservedRegex.md +1 -1
  17. package/docs/functions/findPort.md +5 -5
  18. package/docs/functions/getMultiLevelExtname.md +1 -1
  19. package/docs/functions/glob.md +1 -1
  20. package/docs/functions/isStringIn.md +3 -3
  21. package/docs/functions/isValidFilename.md +1 -1
  22. package/docs/functions/isValidFilepath.md +1 -1
  23. package/docs/functions/normalizeIncludeFiles.md +3 -3
  24. package/docs/functions/omitDeepBy.md +1 -1
  25. package/docs/functions/omitEmptyDeep.md +1 -1
  26. package/docs/functions/parseCodeBlockSelector.md +2 -2
  27. package/docs/functions/parseFrontMatter.md +1 -1
  28. package/docs/functions/parseYaml.md +1 -1
  29. package/docs/functions/reControlCharsRegex.md +1 -1
  30. package/docs/functions/registerYamlTag.md +3 -3
  31. package/docs/functions/removeLeadingEmptyLines.md +1 -1
  32. package/docs/functions/sanitizeFilename.md +1 -1
  33. package/docs/functions/sanitizeFilepath.md +1 -1
  34. package/docs/functions/sleep.md +1 -1
  35. package/docs/functions/stringifyYaml.md +1 -1
  36. package/docs/functions/toCamelCase.md +1 -1
  37. package/docs/functions/toCapitalCase.md +1 -1
  38. package/docs/functions/toPascalCase.md +1 -1
  39. package/docs/functions/traverseFolder.md +1 -1
  40. package/docs/functions/traverseFolderSync.md +1 -1
  41. package/docs/functions/yieldExec.md +1 -1
  42. package/docs/interfaces/BinarySemaphoreAcquireOptions.md +11 -4
  43. package/docs/interfaces/BinarySemaphoreOptions.md +29 -12
  44. package/docs/interfaces/BinarySemaphoreReleaseOptions.md +10 -4
  45. package/docs/interfaces/BinarySemaphoreReleaserFunc.md +14 -5
  46. package/docs/interfaces/CodeBlockSelectorPart.md +4 -4
  47. package/docs/interfaces/CodeString.md +89 -89
  48. package/docs/interfaces/ExtractCodeBlockOptions.md +9 -9
  49. package/docs/interfaces/FindPortOptions.md +5 -5
  50. package/docs/interfaces/IncludeFiles.md +5 -5
  51. package/docs/interfaces/LoadConfigFileOptions.md +5 -5
  52. package/docs/interfaces/SanitizeFilenameOptions.md +5 -5
  53. package/docs/interfaces/SemaphoreOptions.md +39 -16
  54. package/docs/interfaces/SemaphoreTaskItem.md +23 -10
  55. package/docs/type-aliases/CodeBlockCombinator.md +1 -1
  56. package/docs/type-aliases/SemaphoreIsReadyFuncType.md +5 -2
  57. package/docs/type-aliases/StringifyFunc.md +2 -2
  58. package/docs/type-aliases/TraverseFolderHandler.md +2 -2
  59. package/docs/type-aliases/TraverseFolderSyncHandler.md +2 -2
  60. package/docs/variables/DefaultAllTextFiles.md +1 -1
  61. package/docs/variables/DefaultAsyncSemaphoreCapacity.md +4 -1
  62. package/docs/variables/FilenameReservedRegex.md +1 -1
  63. package/docs/variables/WindowsReservedNameRegex.md +1 -1
  64. package/package.json +20 -17
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: CodeString
8
8
 
9
- Defined in: [src/extract-code-block.ts:9](https://github.com/isdk/util.js/blob/30c54a8a455a9593000448de2a45f94a197d73de/src/extract-code-block.ts#L9)
9
+ Defined in: [src/extract-code-block.ts:9](https://github.com/isdk/util.js/blob/c98bd1bf94d1b1dc8d01c6b9a6fc50b4beec5c62/src/extract-code-block.ts#L9)
10
10
 
11
11
  An extension of the built-in `String` type that carries metadata about
12
12
  the extracted code block.
@@ -21,15 +21,15 @@ in the markdown fence.
21
21
 
22
22
  ## Indexable
23
23
 
24
- \[`index`: `number`\]: `string`
24
+ > \[`index`: `number`\]: `string`
25
25
 
26
26
  ## Properties
27
27
 
28
28
  ### lang?
29
29
 
30
- > `optional` **lang**: `string`
30
+ > `optional` **lang?**: `string`
31
31
 
32
- Defined in: [src/extract-code-block.ts:14](https://github.com/isdk/util.js/blob/30c54a8a455a9593000448de2a45f94a197d73de/src/extract-code-block.ts#L14)
32
+ Defined in: [src/extract-code-block.ts:14](https://github.com/isdk/util.js/blob/c98bd1bf94d1b1dc8d01c6b9a6fc50b4beec5c62/src/extract-code-block.ts#L14)
33
33
 
34
34
  The programming language identifier of the code block (e.g., 'ts', 'js').
35
35
  It is normalized to lowercase.
@@ -40,7 +40,7 @@ It is normalized to lowercase.
40
40
 
41
41
  > `readonly` **length**: `number`
42
42
 
43
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:517
43
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:517
44
44
 
45
45
  Returns the length of a String object.
46
46
 
@@ -52,9 +52,9 @@ Returns the length of a String object.
52
52
 
53
53
  ### meta?
54
54
 
55
- > `optional` **meta**: `string`
55
+ > `optional` **meta?**: `string`
56
56
 
57
- Defined in: [src/extract-code-block.ts:18](https://github.com/isdk/util.js/blob/30c54a8a455a9593000448de2a45f94a197d73de/src/extract-code-block.ts#L18)
57
+ Defined in: [src/extract-code-block.ts:18](https://github.com/isdk/util.js/blob/c98bd1bf94d1b1dc8d01c6b9a6fc50b4beec5c62/src/extract-code-block.ts#L18)
58
58
 
59
59
  Any additional metadata provided after the language identifier on the fence line.
60
60
 
@@ -64,7 +64,7 @@ Any additional metadata provided after the language identifier on the fence line
64
64
 
65
65
  > **\[iterator\]**(): `StringIterator`\<`string`\>
66
66
 
67
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.iterable.d.ts:272
67
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.iterable.d.ts:272
68
68
 
69
69
  Iterator
70
70
 
@@ -82,7 +82,7 @@ Iterator
82
82
 
83
83
  > **anchor**(`name`): `string`
84
84
 
85
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:463
85
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.core.d.ts:463
86
86
 
87
87
  Returns an `<a>` HTML anchor element and sets the name attribute to the text value
88
88
 
@@ -110,7 +110,7 @@ A legacy feature for browser compatibility
110
110
 
111
111
  > **at**(`index`): `string` \| `undefined`
112
112
 
113
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2022.string.d.ts:24
113
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2022.string.d.ts:24
114
114
 
115
115
  Returns a new String consisting of the single UTF-16 code unit located at the specified index.
116
116
 
@@ -136,7 +136,7 @@ The zero-based index of the desired code unit. A negative index will count back
136
136
 
137
137
  > **big**(): `string`
138
138
 
139
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:469
139
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.core.d.ts:469
140
140
 
141
141
  Returns a `<big>` HTML element
142
142
 
@@ -158,7 +158,7 @@ A legacy feature for browser compatibility
158
158
 
159
159
  > **blink**(): `string`
160
160
 
161
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:475
161
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.core.d.ts:475
162
162
 
163
163
  Returns a `<blink>` HTML element
164
164
 
@@ -180,7 +180,7 @@ A legacy feature for browser compatibility
180
180
 
181
181
  > **bold**(): `string`
182
182
 
183
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:481
183
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.core.d.ts:481
184
184
 
185
185
  Returns a `<b>` HTML element
186
186
 
@@ -202,7 +202,7 @@ A legacy feature for browser compatibility
202
202
 
203
203
  > **charAt**(`pos`): `string`
204
204
 
205
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:418
205
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:418
206
206
 
207
207
  Returns the character at the specified index.
208
208
 
@@ -228,7 +228,7 @@ The zero-based index of the desired character.
228
228
 
229
229
  > **charCodeAt**(`index`): `number`
230
230
 
231
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:424
231
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:424
232
232
 
233
233
  Returns the Unicode value of the character at the specified location.
234
234
 
@@ -254,7 +254,7 @@ The zero-based index of the desired character. If there is no character at the s
254
254
 
255
255
  > **codePointAt**(`pos`): `number` \| `undefined`
256
256
 
257
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:410
257
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.core.d.ts:410
258
258
 
259
259
  Returns a nonnegative integer Number less than 1114112 (0x110000) that is the code point
260
260
  value of the UTF-16 encoded code point starting at the string element at position pos in
@@ -282,7 +282,7 @@ If a valid UTF-16 surrogate pair does not begin at pos, the result is the code u
282
282
 
283
283
  > **concat**(...`strings`): `string`
284
284
 
285
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:430
285
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:430
286
286
 
287
287
  Returns a string that contains the concatenation of two or more strings.
288
288
 
@@ -308,7 +308,7 @@ The strings to append to the end of the string.
308
308
 
309
309
  > **endsWith**(`searchString`, `endPosition?`): `boolean`
310
310
 
311
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:426
311
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.core.d.ts:426
312
312
 
313
313
  Returns true if the sequence of elements of searchString converted to a String is the
314
314
  same as the corresponding elements of this object (converted to a String) starting at
@@ -338,7 +338,7 @@ endPosition – length(this). Otherwise returns false.
338
338
 
339
339
  > **fixed**(): `string`
340
340
 
341
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:487
341
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.core.d.ts:487
342
342
 
343
343
  Returns a `<tt>` HTML element
344
344
 
@@ -360,7 +360,7 @@ A legacy feature for browser compatibility
360
360
 
361
361
  > **fontcolor**(`color`): `string`
362
362
 
363
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:493
363
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.core.d.ts:493
364
364
 
365
365
  Returns a `<font>` HTML element and sets the color attribute value
366
366
 
@@ -390,7 +390,7 @@ A legacy feature for browser compatibility
390
390
 
391
391
  > **fontsize**(`size`): `string`
392
392
 
393
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:499
393
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.core.d.ts:499
394
394
 
395
395
  Returns a `<font>` HTML element and sets the size attribute value
396
396
 
@@ -416,7 +416,7 @@ A legacy feature for browser compatibility
416
416
 
417
417
  > **fontsize**(`size`): `string`
418
418
 
419
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:505
419
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.core.d.ts:505
420
420
 
421
421
  Returns a `<font>` HTML element and sets the size attribute value
422
422
 
@@ -444,7 +444,7 @@ A legacy feature for browser compatibility
444
444
 
445
445
  > **includes**(`searchString`, `position?`): `boolean`
446
446
 
447
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:419
447
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.core.d.ts:419
448
448
 
449
449
  Returns true if searchString appears as a substring of the result of converting this
450
450
  object to a String, at one or more positions that are
@@ -478,7 +478,7 @@ If position is undefined, 0 is assumed, so as to search all of the String.
478
478
 
479
479
  > **indexOf**(`searchString`, `position?`): `number`
480
480
 
481
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:437
481
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:437
482
482
 
483
483
  Returns the position of the first occurrence of a substring.
484
484
 
@@ -510,7 +510,7 @@ The index at which to begin searching the String object. If omitted, search star
510
510
 
511
511
  > **italics**(): `string`
512
512
 
513
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:511
513
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.core.d.ts:511
514
514
 
515
515
  Returns an `<i>` HTML element
516
516
 
@@ -532,7 +532,7 @@ A legacy feature for browser compatibility
532
532
 
533
533
  > **lastIndexOf**(`searchString`, `position?`): `number`
534
534
 
535
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:444
535
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:444
536
536
 
537
537
  Returns the last occurrence of a substring in the string.
538
538
 
@@ -564,7 +564,7 @@ The index at which to begin searching. If omitted, the search begins at the end
564
564
 
565
565
  > **link**(`url`): `string`
566
566
 
567
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:517
567
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.core.d.ts:517
568
568
 
569
569
  Returns an `<a>` HTML element and sets the href attribute value
570
570
 
@@ -594,7 +594,7 @@ A legacy feature for browser compatibility
594
594
 
595
595
  > **localeCompare**(`that`): `number`
596
596
 
597
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:450
597
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:450
598
598
 
599
599
  Determines whether two strings are equivalent in the current locale.
600
600
 
@@ -618,7 +618,7 @@ String to compare to target string
618
618
 
619
619
  > **localeCompare**(`that`, `locales?`, `options?`): `number`
620
620
 
621
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:4562
621
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:4569
622
622
 
623
623
  Determines whether two strings are equivalent in the current or specified locale.
624
624
 
@@ -632,9 +632,9 @@ String to compare to target string
632
632
 
633
633
  ###### locales?
634
634
 
635
- A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used. This parameter must conform to BCP 47 standards; see the Intl.Collator object for details.
635
+ `string` \| `string`[]
636
636
 
637
- `string` | `string`[]
637
+ A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used. This parameter must conform to BCP 47 standards; see the Intl.Collator object for details.
638
638
 
639
639
  ###### options?
640
640
 
@@ -654,7 +654,7 @@ An object that contains one or more properties that specify comparison options.
654
654
 
655
655
  > **localeCompare**(`that`, `locales?`, `options?`): `number`
656
656
 
657
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2020.string.d.ts:43
657
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2020.string.d.ts:43
658
658
 
659
659
  Determines whether two strings are equivalent in the current or specified locale.
660
660
 
@@ -694,7 +694,7 @@ An object that contains one or more properties that specify comparison options.
694
694
 
695
695
  > **match**(`regexp`): `RegExpMatchArray` \| `null`
696
696
 
697
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:456
697
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:456
698
698
 
699
699
  Matches a string with a regular expression, and returns an array containing the results of that search.
700
700
 
@@ -702,9 +702,9 @@ Matches a string with a regular expression, and returns an array containing the
702
702
 
703
703
  ###### regexp
704
704
 
705
- A variable name or string literal containing the regular expression pattern and flags.
705
+ `string` \| `RegExp`
706
706
 
707
- `string` | `RegExp`
707
+ A variable name or string literal containing the regular expression pattern and flags.
708
708
 
709
709
  ##### Returns
710
710
 
@@ -718,7 +718,7 @@ A variable name or string literal containing the regular expression pattern and
718
718
 
719
719
  > **match**(`matcher`): `RegExpMatchArray` \| `null`
720
720
 
721
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts:241
721
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts:241
722
722
 
723
723
  Matches a string or an object that supports being matched against, and returns an array
724
724
  containing the results of that search, or null if no matches are found.
@@ -745,7 +745,7 @@ An object that supports being matched against.
745
745
 
746
746
  > **matchAll**(`regexp`): `RegExpStringIterator`\<`RegExpExecArray`\>
747
747
 
748
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2020.string.d.ts:29
748
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2020.string.d.ts:29
749
749
 
750
750
  Matches a string with a regular expression, and returns an iterable of matches
751
751
  containing the results of that search.
@@ -774,7 +774,7 @@ A variable name or string literal containing the regular expression pattern and
774
774
 
775
775
  > **normalize**(`form`): `string`
776
776
 
777
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:434
777
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.core.d.ts:434
778
778
 
779
779
  Returns the String value result of normalizing the string into the normalization form
780
780
  named by form as specified in Unicode Standard Annex #15, Unicode Normalization Forms.
@@ -783,11 +783,11 @@ named by form as specified in Unicode Standard Annex #15, Unicode Normalization
783
783
 
784
784
  ###### form
785
785
 
786
+ `"NFC"` \| `"NFD"` \| `"NFKC"` \| `"NFKD"`
787
+
786
788
  Applicable values: "NFC", "NFD", "NFKC", or "NFKD", If not specified default
787
789
  is "NFC"
788
790
 
789
- `"NFC"` | `"NFD"` | `"NFKC"` | `"NFKD"`
790
-
791
791
  ##### Returns
792
792
 
793
793
  `string`
@@ -800,7 +800,7 @@ is "NFC"
800
800
 
801
801
  > **normalize**(`form?`): `string`
802
802
 
803
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:442
803
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.core.d.ts:442
804
804
 
805
805
  Returns the String value result of normalizing the string into the normalization form
806
806
  named by form as specified in Unicode Standard Annex #15, Unicode Normalization Forms.
@@ -828,7 +828,7 @@ is "NFC"
828
828
 
829
829
  > **padEnd**(`maxLength`, `fillString?`): `string`
830
830
 
831
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2017.string.d.ts:44
831
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2017.string.d.ts:44
832
832
 
833
833
  Pads the current string with a given string (possibly repeated) so that the resulting string reaches a given length.
834
834
  The padding is applied from the end (right) of the current string.
@@ -864,7 +864,7 @@ The string to pad the current string with.
864
864
 
865
865
  > **padStart**(`maxLength`, `fillString?`): `string`
866
866
 
867
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2017.string.d.ts:31
867
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2017.string.d.ts:31
868
868
 
869
869
  Pads the current string with a given string (possibly repeated) so that the resulting string reaches a given length.
870
870
  The padding is applied from the start (left) of the current string.
@@ -900,7 +900,7 @@ The string to pad the current string with.
900
900
 
901
901
  > **repeat**(`count`): `string`
902
902
 
903
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:449
903
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.core.d.ts:449
904
904
 
905
905
  Returns a String value that is made from count copies appended together. If count is 0,
906
906
  the empty string is returned.
@@ -929,7 +929,7 @@ number of copies to append
929
929
 
930
930
  > **replace**(`searchValue`, `replaceValue`): `string`
931
931
 
932
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:463
932
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:463
933
933
 
934
934
  Replaces text in a string, using a regular expression or search string.
935
935
 
@@ -937,9 +937,9 @@ Replaces text in a string, using a regular expression or search string.
937
937
 
938
938
  ###### searchValue
939
939
 
940
- A string or regular expression to search for.
940
+ `string` \| `RegExp`
941
941
 
942
- `string` | `RegExp`
942
+ A string or regular expression to search for.
943
943
 
944
944
  ###### replaceValue
945
945
 
@@ -959,7 +959,7 @@ A string containing the text to replace. When the [`searchValue`](#replace) is a
959
959
 
960
960
  > **replace**(`searchValue`, `replacer`): `string`
961
961
 
962
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:470
962
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:470
963
963
 
964
964
  Replaces text in a string, using a regular expression or search string.
965
965
 
@@ -967,9 +967,9 @@ Replaces text in a string, using a regular expression or search string.
967
967
 
968
968
  ###### searchValue
969
969
 
970
- A string to search for.
970
+ `string` \| `RegExp`
971
971
 
972
- `string` | `RegExp`
972
+ A string to search for.
973
973
 
974
974
  ###### replacer
975
975
 
@@ -989,7 +989,7 @@ A function that returns the replacement text.
989
989
 
990
990
  > **replace**(`searchValue`, `replaceValue`): `string`
991
991
 
992
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts:248
992
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts:248
993
993
 
994
994
  Passes a string and [`replaceValue`](#replace) to the `[Symbol.replace]` method on [`searchValue`](#replace). This method is expected to implement its own replacement algorithm.
995
995
 
@@ -1019,7 +1019,7 @@ The replacement text.
1019
1019
 
1020
1020
  > **replace**(`searchValue`, `replacer`): `string`
1021
1021
 
1022
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts:255
1022
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts:255
1023
1023
 
1024
1024
  Replaces text in a string, using an object that supports replacement within a string.
1025
1025
 
@@ -1053,7 +1053,7 @@ A function that returns the replacement text.
1053
1053
 
1054
1054
  > **replaceAll**(`searchValue`, `replaceValue`): `string`
1055
1055
 
1056
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2021.string.d.ts:25
1056
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2021.string.d.ts:25
1057
1057
 
1058
1058
  Replace all instances of a substring in a string, using a regular expression or search string.
1059
1059
 
@@ -1061,9 +1061,9 @@ Replace all instances of a substring in a string, using a regular expression or
1061
1061
 
1062
1062
  ###### searchValue
1063
1063
 
1064
- A string to search for.
1064
+ `string` \| `RegExp`
1065
1065
 
1066
- `string` | `RegExp`
1066
+ A string to search for.
1067
1067
 
1068
1068
  ###### replaceValue
1069
1069
 
@@ -1083,7 +1083,7 @@ A string containing the text to replace for every successful match of searchValu
1083
1083
 
1084
1084
  > **replaceAll**(`searchValue`, `replacer`): `string`
1085
1085
 
1086
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2021.string.d.ts:32
1086
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2021.string.d.ts:32
1087
1087
 
1088
1088
  Replace all instances of a substring in a string, using a regular expression or search string.
1089
1089
 
@@ -1091,9 +1091,9 @@ Replace all instances of a substring in a string, using a regular expression or
1091
1091
 
1092
1092
  ###### searchValue
1093
1093
 
1094
- A string to search for.
1094
+ `string` \| `RegExp`
1095
1095
 
1096
- `string` | `RegExp`
1096
+ A string to search for.
1097
1097
 
1098
1098
  ###### replacer
1099
1099
 
@@ -1117,7 +1117,7 @@ A function that returns the replacement text.
1117
1117
 
1118
1118
  > **search**(`regexp`): `number`
1119
1119
 
1120
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:476
1120
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:476
1121
1121
 
1122
1122
  Finds the first substring match in a regular expression search.
1123
1123
 
@@ -1125,9 +1125,9 @@ Finds the first substring match in a regular expression search.
1125
1125
 
1126
1126
  ###### regexp
1127
1127
 
1128
- The regular expression pattern and applicable flags.
1128
+ `string` \| `RegExp`
1129
1129
 
1130
- `string` | `RegExp`
1130
+ The regular expression pattern and applicable flags.
1131
1131
 
1132
1132
  ##### Returns
1133
1133
 
@@ -1141,7 +1141,7 @@ The regular expression pattern and applicable flags.
1141
1141
 
1142
1142
  > **search**(`searcher`): `number`
1143
1143
 
1144
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts:261
1144
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts:261
1145
1145
 
1146
1146
  Finds the first substring match in a regular expression search.
1147
1147
 
@@ -1167,7 +1167,7 @@ An object which supports searching within a string.
1167
1167
 
1168
1168
  > **slice**(`start?`, `end?`): `string`
1169
1169
 
1170
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:484
1170
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:484
1171
1171
 
1172
1172
  Returns a section of a string.
1173
1173
 
@@ -1200,7 +1200,7 @@ If this value is not specified, the substring continues to the end of stringObj.
1200
1200
 
1201
1201
  > **small**(): `string`
1202
1202
 
1203
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:523
1203
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.core.d.ts:523
1204
1204
 
1205
1205
  Returns a `<small>` HTML element
1206
1206
 
@@ -1224,7 +1224,7 @@ A legacy feature for browser compatibility
1224
1224
 
1225
1225
  > **split**(`separator`, `limit?`): `string`[]
1226
1226
 
1227
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:491
1227
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:491
1228
1228
 
1229
1229
  Split a string into substrings using the specified separator and return them as an array.
1230
1230
 
@@ -1232,9 +1232,9 @@ Split a string into substrings using the specified separator and return them as
1232
1232
 
1233
1233
  ###### separator
1234
1234
 
1235
- A string that identifies character or characters to use in separating the string. If omitted, a single-element array containing the entire string is returned.
1235
+ `string` \| `RegExp`
1236
1236
 
1237
- `string` | `RegExp`
1237
+ A string that identifies character or characters to use in separating the string. If omitted, a single-element array containing the entire string is returned.
1238
1238
 
1239
1239
  ###### limit?
1240
1240
 
@@ -1254,7 +1254,7 @@ A value used to limit the number of elements returned in the array.
1254
1254
 
1255
1255
  > **split**(`splitter`, `limit?`): `string`[]
1256
1256
 
1257
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts:268
1257
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts:268
1258
1258
 
1259
1259
  Split a string into substrings using the specified separator and return them as an array.
1260
1260
 
@@ -1286,7 +1286,7 @@ A value used to limit the number of elements returned in the array.
1286
1286
 
1287
1287
  > **startsWith**(`searchString`, `position?`): `boolean`
1288
1288
 
1289
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:456
1289
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.core.d.ts:456
1290
1290
 
1291
1291
  Returns true if the sequence of elements of searchString converted to a String is the
1292
1292
  same as the corresponding elements of this object (converted to a String) starting at
@@ -1316,7 +1316,7 @@ position. Otherwise returns false.
1316
1316
 
1317
1317
  > **strike**(): `string`
1318
1318
 
1319
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:529
1319
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.core.d.ts:529
1320
1320
 
1321
1321
  Returns a `<strike>` HTML element
1322
1322
 
@@ -1338,7 +1338,7 @@ A legacy feature for browser compatibility
1338
1338
 
1339
1339
  > **sub**(): `string`
1340
1340
 
1341
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:535
1341
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.core.d.ts:535
1342
1342
 
1343
1343
  Returns a `<sub>` HTML element
1344
1344
 
@@ -1360,7 +1360,7 @@ A legacy feature for browser compatibility
1360
1360
 
1361
1361
  > **substr**(`from`, `length?`): `string`
1362
1362
 
1363
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:526
1363
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:526
1364
1364
 
1365
1365
  Gets a substring beginning at the specified location and having the specified length.
1366
1366
 
@@ -1396,7 +1396,7 @@ A legacy feature for browser compatibility
1396
1396
 
1397
1397
  > **substring**(`start`, `end?`): `string`
1398
1398
 
1399
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:499
1399
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:499
1400
1400
 
1401
1401
  Returns the substring at the specified location within a String object.
1402
1402
 
@@ -1429,7 +1429,7 @@ If end is omitted, the characters from start through the end of the original str
1429
1429
 
1430
1430
  > **sup**(): `string`
1431
1431
 
1432
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:541
1432
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2015.core.d.ts:541
1433
1433
 
1434
1434
  Returns a `<sup>` HTML element
1435
1435
 
@@ -1453,7 +1453,7 @@ A legacy feature for browser compatibility
1453
1453
 
1454
1454
  > **toLocaleLowerCase**(`locales?`): `string`
1455
1455
 
1456
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:505
1456
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:505
1457
1457
 
1458
1458
  Converts all alphabetic characters to lowercase, taking into account the host environment's current locale.
1459
1459
 
@@ -1461,7 +1461,7 @@ Converts all alphabetic characters to lowercase, taking into account the host en
1461
1461
 
1462
1462
  ###### locales?
1463
1463
 
1464
- `string` | `string`[]
1464
+ `string` \| `string`[]
1465
1465
 
1466
1466
  ##### Returns
1467
1467
 
@@ -1475,7 +1475,7 @@ Converts all alphabetic characters to lowercase, taking into account the host en
1475
1475
 
1476
1476
  > **toLocaleLowerCase**(`locales?`): `string`
1477
1477
 
1478
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2020.string.d.ts:32
1478
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2020.string.d.ts:32
1479
1479
 
1480
1480
  Converts all alphabetic characters to lowercase, taking into account the host environment's current locale.
1481
1481
 
@@ -1501,7 +1501,7 @@ Converts all alphabetic characters to lowercase, taking into account the host en
1501
1501
 
1502
1502
  > **toLocaleUpperCase**(`locales?`): `string`
1503
1503
 
1504
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:511
1504
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:511
1505
1505
 
1506
1506
  Returns a string where all alphabetic characters have been converted to uppercase, taking into account the host environment's current locale.
1507
1507
 
@@ -1509,7 +1509,7 @@ Returns a string where all alphabetic characters have been converted to uppercas
1509
1509
 
1510
1510
  ###### locales?
1511
1511
 
1512
- `string` | `string`[]
1512
+ `string` \| `string`[]
1513
1513
 
1514
1514
  ##### Returns
1515
1515
 
@@ -1523,7 +1523,7 @@ Returns a string where all alphabetic characters have been converted to uppercas
1523
1523
 
1524
1524
  > **toLocaleUpperCase**(`locales?`): `string`
1525
1525
 
1526
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2020.string.d.ts:35
1526
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2020.string.d.ts:35
1527
1527
 
1528
1528
  Returns a string where all alphabetic characters have been converted to uppercase, taking into account the host environment's current locale.
1529
1529
 
@@ -1547,7 +1547,7 @@ Returns a string where all alphabetic characters have been converted to uppercas
1547
1547
 
1548
1548
  > **toLowerCase**(): `string`
1549
1549
 
1550
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:502
1550
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:502
1551
1551
 
1552
1552
  Converts all the alphabetic characters in a string to lowercase.
1553
1553
 
@@ -1565,7 +1565,7 @@ Converts all the alphabetic characters in a string to lowercase.
1565
1565
 
1566
1566
  > **toString**(): `string`
1567
1567
 
1568
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:412
1568
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:412
1569
1569
 
1570
1570
  Returns a string representation of a string.
1571
1571
 
@@ -1583,7 +1583,7 @@ Returns a string representation of a string.
1583
1583
 
1584
1584
  > **toUpperCase**(): `string`
1585
1585
 
1586
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:508
1586
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:508
1587
1587
 
1588
1588
  Converts all the alphabetic characters in a string to uppercase.
1589
1589
 
@@ -1601,7 +1601,7 @@ Converts all the alphabetic characters in a string to uppercase.
1601
1601
 
1602
1602
  > **trim**(): `string`
1603
1603
 
1604
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:514
1604
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:514
1605
1605
 
1606
1606
  Removes the leading and trailing white space and line terminator characters from a string.
1607
1607
 
@@ -1619,7 +1619,7 @@ Removes the leading and trailing white space and line terminator characters from
1619
1619
 
1620
1620
  > **trimEnd**(): `string`
1621
1621
 
1622
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2019.string.d.ts:21
1622
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2019.string.d.ts:21
1623
1623
 
1624
1624
  Removes the trailing white space and line terminator characters from a string.
1625
1625
 
@@ -1637,7 +1637,7 @@ Removes the trailing white space and line terminator characters from a string.
1637
1637
 
1638
1638
  > **trimLeft**(): `string`
1639
1639
 
1640
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2019.string.d.ts:30
1640
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2019.string.d.ts:30
1641
1641
 
1642
1642
  Removes the leading white space and line terminator characters from a string.
1643
1643
 
@@ -1659,7 +1659,7 @@ A legacy feature for browser compatibility. Use `trimStart` instead
1659
1659
 
1660
1660
  > **trimRight**(): `string`
1661
1661
 
1662
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2019.string.d.ts:36
1662
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2019.string.d.ts:36
1663
1663
 
1664
1664
  Removes the trailing white space and line terminator characters from a string.
1665
1665
 
@@ -1681,7 +1681,7 @@ A legacy feature for browser compatibility. Use `trimEnd` instead
1681
1681
 
1682
1682
  > **trimStart**(): `string`
1683
1683
 
1684
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es2019.string.d.ts:24
1684
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es2019.string.d.ts:24
1685
1685
 
1686
1686
  Removes the leading white space and line terminator characters from a string.
1687
1687
 
@@ -1699,7 +1699,7 @@ Removes the leading white space and line terminator characters from a string.
1699
1699
 
1700
1700
  > **valueOf**(): `string`
1701
1701
 
1702
- Defined in: node\_modules/.pnpm/typescript@5.8.2/node\_modules/typescript/lib/lib.es5.d.ts:529
1702
+ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/lib.es5.d.ts:529
1703
1703
 
1704
1704
  Returns the primitive value of the specified object.
1705
1705