* Removes empty lines from the start and end.
()
| 1015 | * Removes empty lines from the start and end. |
| 1016 | */ |
| 1017 | trimLines(): this { |
| 1018 | return this.trim('[\\r\\n]') |
| 1019 | } |
| 1020 | |
| 1021 | /** |
| 1022 | * Trims content matching `charType` (defaults to `\s`, i.e. whitespace) from the start and end. |