()
| 143 | } |
| 144 | |
| 145 | toJsComment(): string { |
| 146 | return this.hasMappings |
| 147 | ? '//' + JS_B64_PREFIX + toBase64String(JSON.stringify(this, null, 0)) |
| 148 | : ''; |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | export function toBase64String(value: string): string { |
no test coverage detected