Package Exports
- compare-semver
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (compare-semver) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
compare-semver
Compare semver versions to many other semver versions.
Install
npm install compare-semver --save
Usage
var compare = require('compare-semver');
var versions = [
'0.0.11',
'0.1.0',
'0.2.0',
'0.1.11'
];
var maxSemver = compare.max(versions);
Methods
max(versions)
Returns the greatest version from the list of versions
versions
- an array of semantic versions
min(versions)
Returns the smallest version from the list of versions
versions
- an array of semantic versions
gt(version, versions)
Compare that single version is greater than all versions in the list
version
- the version to compareversions
- an array of semantic versions
lt(version, versions)
Compare that single version is less than all versions in the list
version
- the version to compareversions
- an array of semantic versions
unique(version, versions)
Is the given version unique compared to the list of versions
version
- the version to compareversions
- an array of semantic versions
Run Tests
npm install
npm test