* Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start and end.
(charType?: string)
| 1039 | * Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start and end. |
| 1040 | */ |
| 1041 | trim(charType?: string): this { |
| 1042 | return this.trimStart(charType).trimEnd(charType) |
| 1043 | } |
| 1044 | |
| 1045 | /** @internal */ |
| 1046 | trimEndAborted(charType?: string): boolean { |