* Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start and end.
(charType?: string)
| 1022 | * Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start and end. |
| 1023 | */ |
| 1024 | trim(charType?: string): this { |
| 1025 | return this.trimStart(charType).trimEnd(charType) |
| 1026 | } |
| 1027 | |
| 1028 | /** @internal */ |
| 1029 | trimEndAborted(charType?: string): boolean { |