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

37
build/node_modules/bin-version/readme.md generated vendored Normal file
View File

@@ -0,0 +1,37 @@
# bin-version [![Build Status](https://travis-ci.org/sindresorhus/bin-version.svg?branch=master)](https://travis-ci.org/sindresorhus/bin-version)
> Get the version of a binary in [semver](https://github.com/isaacs/node-semver) format
## Install
```sh
$ npm install --save bin-version
```
## Usage
```sh
$ curl --version
curl 7.30.0 (x86_64-apple-darwin13.0)
```
```js
var binVersion = require('bin-version');
binVersion('curl', function (err, version) {
console.log(version);
//=> 7.30.0
});
```
## CLI
See the [find-versions](https://github.com/sindresorhus/find-versions#cli) CLI.
## License
MIT © [Sindre Sorhus](http://sindresorhus.com)