(options = {})
| 831 | const hasOwnProp = Object.prototype.hasOwnProperty; |
| 832 | class Bundle { |
| 833 | constructor(options = {}) { |
| 834 | this.intro = options.intro || ''; |
| 835 | this.separator = options.separator !== void 0 ? options.separator : '\n'; |
| 836 | this.sources = []; |
| 837 | this.uniqueSources = []; |
| 838 | this.uniqueSourceIndexByFilename = {}; |
| 839 | } |
| 840 | addSource(source) { |
| 841 | if (source instanceof MagicString) { |
| 842 | return this.addSource({ |
nothing calls this directly
no outgoing calls
no test coverage detected