@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.
- package/dist/index.d.mts +247 -142
- package/dist/index.d.ts +247 -142
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/docs/classes/BinarySemaphore.md +145 -64
- package/docs/classes/ConfigFile.md +8 -8
- package/docs/classes/Deque.md +109 -105
- package/docs/classes/IntSet.md +12 -12
- package/docs/classes/Semaphore.md +149 -77
- package/docs/classes/SignalGate.md +11 -11
- package/docs/functions/RateLimit.md +30 -7
- package/docs/functions/arrayHasAll.md +1 -1
- package/docs/functions/extNameLevel.md +1 -1
- package/docs/functions/extractCodeBlock.md +3 -3
- package/docs/functions/extractTopLevelCodeBlocks.md +1 -1
- package/docs/functions/filenameReservedRegex.md +1 -1
- package/docs/functions/findPort.md +5 -5
- package/docs/functions/getMultiLevelExtname.md +1 -1
- package/docs/functions/glob.md +1 -1
- package/docs/functions/isStringIn.md +3 -3
- package/docs/functions/isValidFilename.md +1 -1
- package/docs/functions/isValidFilepath.md +1 -1
- package/docs/functions/normalizeIncludeFiles.md +3 -3
- package/docs/functions/omitDeepBy.md +1 -1
- package/docs/functions/omitEmptyDeep.md +1 -1
- package/docs/functions/parseCodeBlockSelector.md +2 -2
- package/docs/functions/parseFrontMatter.md +1 -1
- package/docs/functions/parseYaml.md +1 -1
- package/docs/functions/reControlCharsRegex.md +1 -1
- package/docs/functions/registerYamlTag.md +3 -3
- package/docs/functions/removeLeadingEmptyLines.md +1 -1
- package/docs/functions/sanitizeFilename.md +1 -1
- package/docs/functions/sanitizeFilepath.md +1 -1
- package/docs/functions/sleep.md +1 -1
- package/docs/functions/stringifyYaml.md +1 -1
- package/docs/functions/toCamelCase.md +1 -1
- package/docs/functions/toCapitalCase.md +1 -1
- package/docs/functions/toPascalCase.md +1 -1
- package/docs/functions/traverseFolder.md +1 -1
- package/docs/functions/traverseFolderSync.md +1 -1
- package/docs/functions/yieldExec.md +1 -1
- package/docs/interfaces/BinarySemaphoreAcquireOptions.md +11 -4
- package/docs/interfaces/BinarySemaphoreOptions.md +29 -12
- package/docs/interfaces/BinarySemaphoreReleaseOptions.md +10 -4
- package/docs/interfaces/BinarySemaphoreReleaserFunc.md +14 -5
- package/docs/interfaces/CodeBlockSelectorPart.md +4 -4
- package/docs/interfaces/CodeString.md +89 -89
- package/docs/interfaces/ExtractCodeBlockOptions.md +9 -9
- package/docs/interfaces/FindPortOptions.md +5 -5
- package/docs/interfaces/IncludeFiles.md +5 -5
- package/docs/interfaces/LoadConfigFileOptions.md +5 -5
- package/docs/interfaces/SanitizeFilenameOptions.md +5 -5
- package/docs/interfaces/SemaphoreOptions.md +39 -16
- package/docs/interfaces/SemaphoreTaskItem.md +23 -10
- package/docs/type-aliases/CodeBlockCombinator.md +1 -1
- package/docs/type-aliases/SemaphoreIsReadyFuncType.md +5 -2
- package/docs/type-aliases/StringifyFunc.md +2 -2
- package/docs/type-aliases/TraverseFolderHandler.md +2 -2
- package/docs/type-aliases/TraverseFolderSyncHandler.md +2 -2
- package/docs/variables/DefaultAllTextFiles.md +1 -1
- package/docs/variables/DefaultAsyncSemaphoreCapacity.md +4 -1
- package/docs/variables/FilenameReservedRegex.md +1 -1
- package/docs/variables/WindowsReservedNameRegex.md +1 -1
- 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/
|
|
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
|
|
30
|
+
> `optional` **lang?**: `string`
|
|
31
31
|
|
|
32
|
-
Defined in: [src/extract-code-block.ts:14](https://github.com/isdk/util.js/blob/
|
|
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.
|
|
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
|
|
55
|
+
> `optional` **meta?**: `string`
|
|
56
56
|
|
|
57
|
-
Defined in: [src/extract-code-block.ts:18](https://github.com/isdk/util.js/blob/
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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
|
-
|
|
635
|
+
`string` \| `string`[]
|
|
636
636
|
|
|
637
|
-
|
|
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.
|
|
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.
|
|
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
|
-
|
|
705
|
+
`string` \| `RegExp`
|
|
706
706
|
|
|
707
|
-
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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
|
-
|
|
940
|
+
`string` \| `RegExp`
|
|
941
941
|
|
|
942
|
-
|
|
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.
|
|
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
|
-
|
|
970
|
+
`string` \| `RegExp`
|
|
971
971
|
|
|
972
|
-
|
|
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.
|
|
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.
|
|
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.
|
|
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
|
-
|
|
1064
|
+
`string` \| `RegExp`
|
|
1065
1065
|
|
|
1066
|
-
|
|
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.
|
|
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
|
-
|
|
1094
|
+
`string` \| `RegExp`
|
|
1095
1095
|
|
|
1096
|
-
|
|
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.
|
|
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
|
-
|
|
1128
|
+
`string` \| `RegExp`
|
|
1129
1129
|
|
|
1130
|
-
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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
|
-
|
|
1235
|
+
`string` \| `RegExp`
|
|
1236
1236
|
|
|
1237
|
-
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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`
|
|
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.
|
|
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.
|
|
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`
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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
|
|