Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

semver-match

vilic139.2kMIT0.1.1TypeScript support: included

A simple function that conforms npm package version matching behavior.

semver, match, algorithm

readme

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.