(str, options)
| 57 | } |
| 58 | |
| 59 | append(str, options) { |
| 60 | this.addSource({ |
| 61 | content: new MagicString(str), |
| 62 | separator: (options && options.separator) || '', |
| 63 | }); |
| 64 | |
| 65 | return this; |
| 66 | } |
| 67 | |
| 68 | clone() { |
| 69 | const bundle = new Bundle({ |
no test coverage detected