first commit

This commit is contained in:
s.golasch
2023-08-01 13:49:46 +02:00
commit 1fc239fd54
20238 changed files with 3112246 additions and 0 deletions

51
build/node_modules/bin-check/readme.md generated vendored Normal file
View File

@@ -0,0 +1,51 @@
# bin-check [![Build Status](https://travis-ci.org/kevva/bin-check.svg?branch=master)](https://travis-ci.org/kevva/bin-check)
> Check if a binary is working by checking its exit code
## Install
```
$ npm install --save bin-check
```
## Usage
```js
var binCheck = require('bin-check');
binCheck('/bin/sh', ['--version'], function (err, works) {
console.log(works);
//=> true
});
```
## API
### binCheck(binary, command, callback)
#### binary
Type: `string`
Path to the binary.
#### command
Type: `array`
Default: `['--help']`
Commands to run the binary with.
#### callback(err, works)
Type: `function`
`works` is a `boolean` which returns `true` if the binary is working correctly.
## License
MIT © [Kevin Mårtensson](https://github.com/kevva)