* Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the end.
(charType?: string)
| 1249 | * Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the end. |
| 1250 | */ |
| 1251 | trimEnd(charType?: string): this { |
| 1252 | this.trimEndAborted(charType) |
| 1253 | return this |
| 1254 | } |
| 1255 | |
| 1256 | /** @internal */ |
| 1257 | trimStartAborted(charType?: string): boolean { |
no test coverage detected