(absPath)
| 18 | const nodeRequire = createRequire(path.join(ROOT, 'package.json')); |
| 19 | |
| 20 | function canonicalId(absPath) { |
| 21 | return path.relative(ROOT, absPath).split(path.sep).join('/'); |
| 22 | } |
| 23 | |
| 24 | function resolveModule(parentId, request) { |
| 25 | const base = parentId ? path.dirname(path.resolve(ROOT, parentId)) : MODULE_DIR; |
no outgoing calls
no test coverage detected