* Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the end.
(charType?: string)
| 1229 | * Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the end. |
| 1230 | */ |
| 1231 | trimEnd(charType?: string): this { |
| 1232 | this.trimEndAborted(charType) |
| 1233 | return this |
| 1234 | } |
| 1235 | |
| 1236 | /** @internal */ |
| 1237 | trimStartAborted(charType?: string): boolean { |
no test coverage detected