* Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start and end.
(charType?: string)
| 1189 | * Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start and end. |
| 1190 | */ |
| 1191 | trim(charType?: string): this { |
| 1192 | return this.trimStart(charType).trimEnd(charType) |
| 1193 | } |
| 1194 | |
| 1195 | /** @internal */ |
| 1196 | trimEndAborted(charType?: string): boolean { |