* Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start.
(charType?: string)
| 1158 | * Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start. |
| 1159 | */ |
| 1160 | trimStart(charType?: string): this { |
| 1161 | this.trimStartAborted(charType) |
| 1162 | return this |
| 1163 | } |
| 1164 | |
| 1165 | /** |
| 1166 | * Indicates if the string has been changed. |
no test coverage detected