* Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start.
(charType?: string)
| 1269 | * Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start. |
| 1270 | */ |
| 1271 | trimStart(charType?: string): this { |
| 1272 | this.trimStartAborted(charType) |
| 1273 | return this |
| 1274 | } |
| 1275 | |
| 1276 | /** |
| 1277 | * Indicates if the string has been changed. |
no test coverage detected