(specifier, context, nextResolve)
| 2 | |
| 3 | // Pass through |
| 4 | export const resolve: ResolveHook = async function resolve(specifier, context, nextResolve) { |
| 5 | if(false){ |
| 6 | // https://github.com/nodejs/node/issues/54645 |
| 7 | // A bug in the typescript parsers swc causes |
| 8 | // the next line to not be parsed correctly |
| 9 | } |
| 10 | return nextResolve(specifier, context); |
| 11 | }; |
no outgoing calls
no test coverage detected