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