(filename, opts)
| 44 | return babel.transformFileSync(filename, { cwd, configFile: false, ...opts }); |
| 45 | } |
| 46 | function transformFileAsync(filename, opts) { |
| 47 | return babel.transformFileAsync(filename, { |
| 48 | cwd, |
| 49 | configFile: false, |
| 50 | ...opts, |
| 51 | }); |
| 52 | } |
| 53 | |
| 54 | function transformAsync(code, opts) { |
| 55 | return babel.transformAsync(code, { cwd, configFile: false, ...opts }); |
no outgoing calls
no test coverage detected
searching dependent graphs…