push
travis-ci
799 of 986 branches covered (81.03%)
2162 of 2162 new or added lines in 32 files covered. (100.0%)
2049 of 2162 relevant lines covered (94.77%)
325.72 hits per line
|
const which = require('which');
|
2✔ |
2 |
|
|
|
module.exports = { |
2✔ |
4 |
which(command) { |
|
|
try {
|
80✔ |
|
which.sync(command); |
80✔ |
|
return true; |
80✔ |
8 |
} catch (e) {
|
|
|
return false; |
× |
10 |
} |
|
11 |
} |
|
12 |
}; |