* Removes empty lines from the start and end.
()
| 1063 | * Removes empty lines from the start and end. |
| 1064 | */ |
| 1065 | trimLines(): this { |
| 1066 | return this.trim('[\\r\\n]') |
| 1067 | } |
| 1068 | |
| 1069 | /** |
| 1070 | * Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start and end. |