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