* Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start.
(charType?: string)
| 1289 | * Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start. |
| 1290 | */ |
| 1291 | trimStart(charType?: string): this { |
| 1292 | this.trimStartAborted(charType) |
| 1293 | return this |
| 1294 | } |
| 1295 | |
| 1296 | /** |
| 1297 | * Indicates if the string has been changed. |
no test coverage detected