* Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the end.
(charType?: string)
| 1062 | * Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the end. |
| 1063 | */ |
| 1064 | trimEnd(charType?: string): this { |
| 1065 | this.trimEndAborted(charType) |
| 1066 | return this |
| 1067 | } |
| 1068 | |
| 1069 | /** @internal */ |
| 1070 | trimStartAborted(charType?: string): boolean { |
no test coverage detected