Check if a binary is working
npm install bin-check> Check if a binary is working by checking its exit code
```
$ npm install bin-check
`js
const binCheck = require('bin-check');
binCheck('/bin/sh', ['--version']).then(works => {
console.log(works);
//=> true
});
`
Returns a Promise for a boolean.
Returns a boolean.
#### binary
Type: string
Path to the binary.
#### arguments
Type: Array['--help']`
Default:
Arguments to run the binary with.
MIT © Kevin Mårtensson