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