UNPKG

dredd

Version:

HTTP API Testing Framework

13 lines (11 loc) 179 B
const which = require('which'); module.exports = { which(command) { try { which.sync(command); return true; } catch (e) { return false; } }, };