| 63 | } |
| 64 | |
| 65 | export interface RunOptions extends Options { |
| 66 | writeback?(code: string): void; |
| 67 | } |
| 68 | |
| 69 | function runFile(path: any, transformer: Transformer, options?: RunOptions) { |
| 70 | fs.readFile(path, "utf-8", function (err, code) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…