(file: string, mapping = false)
| 56 | } |
| 57 | |
| 58 | write(file: string, mapping = false) { |
| 59 | writeFile(file, this.code); |
| 60 | mapping && writeFile(file + '.json', JSON.stringify(this.mapping)); |
| 61 | } |
| 62 | |
| 63 | static unescape(code: string, mapping: Record<string, string>) { |
| 64 | let out = code; |
no test coverage detected