biobulkbende.org/node_modules/semver-greatest-satisfied-r...
Tancre 0efda7fffe structure, layout and automation 2020-09-16 14:23:28 +02:00
..
LICENSE structure, layout and automation 2020-09-16 14:23:28 +02:00
README.md structure, layout and automation 2020-09-16 14:23:28 +02:00
index.js structure, layout and automation 2020-09-16 14:23:28 +02:00
package.json structure, layout and automation 2020-09-16 14:23:28 +02:00

README.md

semver-greatest-satisfied-range

NPM version Downloads Build Status AppVeyor Build Status Coveralls Status Gitter chat

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-compat.

License

MIT