({ n, pathType })
| 13 | |
| 14 | |
| 15 | function main({ n, pathType }) { |
| 16 | bench.start(); |
| 17 | if (pathType === 'relative') |
| 18 | relativePath(n); |
| 19 | else |
| 20 | resolvedPath(n); |
| 21 | } |
| 22 | |
| 23 | function relativePath(n) { |
| 24 | (function r(cntr) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…