* Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start.
(charType?: string)
| 1145 | * Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start. |
| 1146 | */ |
| 1147 | trimStart(charType?: string): this { |
| 1148 | this.trimStartAborted(charType) |
| 1149 | return this |
| 1150 | } |
| 1151 | |
| 1152 | /** |
| 1153 | * Indicates if the string has been changed. |
no test coverage detected