* Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the end.
(charType?: string)
| 1110 | * Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the end. |
| 1111 | */ |
| 1112 | trimEnd(charType?: string): this { |
| 1113 | this.trimEndAborted(charType) |
| 1114 | return this |
| 1115 | } |
| 1116 | |
| 1117 | /** @internal */ |
| 1118 | trimStartAborted(charType?: string): boolean { |
no test coverage detected