(path)
| 370 | // Now we transform each function |
| 371 | program.traverse({ |
| 372 | ArrowFunctionExpression(path) { |
| 373 | transformFunction(ctx.opts, path, false); |
| 374 | }, |
| 375 | FunctionExpression(path) { |
| 376 | transformFunction(ctx.opts, path, false); |
| 377 | }, |
nothing calls this directly
no test coverage detected
searching dependent graphs…