Package Exports
- semver-greatest-satisfied-range
- semver-greatest-satisfied-range/index.js
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 (semver-greatest-satisfied-range) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
semver-greatest-satisfied-range
Find the greatest satisfied semver range from an array of ranges.
Usage
var findRange = require('semver-greatest-satisfied-range');
var range = findRange('1.1.0', ['^1.0.0', '^1.1.0', '^1.2.0']);
// range === '^1.1.0'
API
findRange(version, rangeArray)
Takes a version and array of ranges, returns the greatest satisfied range. Range support is defined by sver.
License
MIT