(properties)
| 139 | } |
| 140 | class SourceMap { |
| 141 | constructor(properties) { |
| 142 | this.version = 3; |
| 143 | this.file = properties.file; |
| 144 | this.sources = properties.sources; |
| 145 | this.sourcesContent = properties.sourcesContent; |
| 146 | this.names = properties.names; |
| 147 | this.mappings = encode(properties.mappings); |
| 148 | } |
| 149 | toString() { |
| 150 | return JSON.stringify(this); |
| 151 | } |
nothing calls this directly
no outgoing calls
no test coverage detected