* Removes empty lines from the start and end.
()
| 1071 | * Removes empty lines from the start and end. |
| 1072 | */ |
| 1073 | trimLines(): this { |
| 1074 | return this.trim('[\\r\\n]') |
| 1075 | } |
| 1076 | |
| 1077 | /** |
| 1078 | * Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start and end. |