* Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start and end.
(charType?: string)
| 1070 | * Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start and end. |
| 1071 | */ |
| 1072 | trim(charType?: string): this { |
| 1073 | return this.trimStart(charType).trimEnd(charType) |
| 1074 | } |
| 1075 | |
| 1076 | /** @internal */ |
| 1077 | trimEndAborted(charType?: string): boolean { |