semver-match
v0.1.1
Published
A simple function that conforms npm package version matching behavior.
Downloads
132,643
Readme
Semver Match
A simple function that conforms npm package version matching behavior.
Install
npm install semver-match --save
Usage
import match from 'semver-match';
match('^0.1.0', ['0.1.0', '0.1.1', '0.2.0']); // "0.1.1"
match('*', ['0.1.0', '0.2.0'], { latest: '0.1.0' }); // "0.1.0"
match('next', ['0.1.0', '0.2.0'], { latest: '0.1.0', next: '0.2.0' }); // "0.2.0"
License
MIT License.