0.1.1 • Published 8 years ago

semver-match v0.1.1

Weekly downloads
1,656
License
MIT
Repository
github
Last release
8 years ago

NPM Package Build Status

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.