(charType)
| 731 | return this.trim('[\\r\\n]'); |
| 732 | } |
| 733 | trim(charType) { |
| 734 | return this.trimStart(charType).trimEnd(charType); |
| 735 | } |
| 736 | trimEndAborted(charType) { |
| 737 | const rx = new RegExp((charType || '\\s') + '+$'); |
| 738 | this.outro = this.outro.replace(rx, ''); |