* Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start and end.
(charType?: string)
| 1078 | * Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start and end. |
| 1079 | */ |
| 1080 | trim(charType?: string): this { |
| 1081 | return this.trimStart(charType).trimEnd(charType) |
| 1082 | } |
| 1083 | |
| 1084 | /** @internal */ |
| 1085 | trimEndAborted(charType?: string): boolean { |