(t)
| 830 | return this; |
| 831 | } |
| 832 | trimEnd(t) { |
| 833 | const e = new RegExp((t || '\\s') + '+$'); |
| 834 | let n, |
| 835 | i = this.sources.length - 1; |
| 836 | do |
| 837 | if (((n = this.sources[i--]), !n)) { |
| 838 | this.intro = this.intro.replace(e, ''); |
| 839 | break; |
| 840 | } |
| 841 | while (!n.content.trimEndAborted(t)); |
| 842 | return this; |
| 843 | } |
| 844 | } |
| 845 | export { S as Bundle, b as SourceMap, f as default }; |
nothing calls this directly
no test coverage detected