* Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start.
(charType?: string)
| 1119 | * Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start. |
| 1120 | */ |
| 1121 | trimStart(charType?: string): this { |
| 1122 | this.trimStartAborted(charType) |
| 1123 | return this |
| 1124 | } |
| 1125 | |
| 1126 | /** |
| 1127 | * Indicates if the string has been changed. |
no test coverage detected