(...names)
| 251 | } |
| 252 | |
| 253 | function findFromProject(...names) { |
| 254 | let current = packageCache.get(packageCache.appRoot); |
| 255 | for (let name of names) { |
| 256 | current = packageCache.resolve(name, current); |
| 257 | } |
| 258 | return current; |
| 259 | } |
| 260 | |
| 261 | function entrypoint(pkg, which) { |
| 262 | let module = pkg.packageJSON[which]; |
no test coverage detected