* Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the end.
(charType?: string)
| 1079 | * Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the end. |
| 1080 | */ |
| 1081 | trimEnd(charType?: string): this { |
| 1082 | this.trimEndAborted(charType) |
| 1083 | return this |
| 1084 | } |
| 1085 | |
| 1086 | /** @internal */ |
| 1087 | trimStartAborted(charType?: string): boolean { |
no test coverage detected