(str: string, options?: BundleOptions)
| 106 | } |
| 107 | |
| 108 | append(str: string, options?: BundleOptions): this { |
| 109 | this.addSource({ |
| 110 | content: new MagicString(str), |
| 111 | separator: (options && options.separator) || '', |
| 112 | }) |
| 113 | |
| 114 | return this |
| 115 | } |
| 116 | |
| 117 | clone(): this { |
| 118 | const bundle = new Bundle({ |
no test coverage detected