(charType)
| 755 | return false; |
| 756 | } |
| 757 | trimEnd(charType) { |
| 758 | this.trimEndAborted(charType); |
| 759 | return this; |
| 760 | } |
| 761 | trimStartAborted(charType) { |
| 762 | const rx = new RegExp('^' + (charType || '\\s') + '+'); |
| 763 | this.intro = this.intro.replace(rx, ''); |
nothing calls this directly
no test coverage detected