(v)
| 72 | // non-absolute override falls through to the trusted home/system default. |
| 73 | const _pathFlavor = process.platform === 'win32' ? path.win32 : path.posix; |
| 74 | const absEnv = (v) => (v && _pathFlavor.isAbsolute(v)) ? v : null; |
| 75 | const paths = [ |
| 76 | // npm global with `npm config set prefix` overrides |
| 77 | path.join(home, '.npm-global', 'lib', 'node_modules'), |
no outgoing calls
no test coverage detected