* Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the end.
(charType?: string)
| 1118 | * Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the end. |
| 1119 | */ |
| 1120 | trimEnd(charType?: string): this { |
| 1121 | this.trimEndAborted(charType) |
| 1122 | return this |
| 1123 | } |
| 1124 | |
| 1125 | /** @internal */ |
| 1126 | trimStartAborted(charType?: string): boolean { |
no test coverage detected