* Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start.
(charType?: string)
| 1103 | * Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start. |
| 1104 | */ |
| 1105 | trimStart(charType?: string): this { |
| 1106 | this.trimStartAborted(charType) |
| 1107 | return this |
| 1108 | } |
| 1109 | |
| 1110 | /** |
| 1111 | * Indicates if the string has been changed. |
no test coverage detected