You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
393 B
20 lines
393 B
1 year ago
|
'use strict';
|
||
|
|
||
|
var SemverRange = require('sver-compat').SemverRange;
|
||
|
|
||
|
function findRange(version, ranges) {
|
||
|
ranges = ranges || [];
|
||
|
|
||
|
function matches(range) {
|
||
|
return SemverRange.match(range, version, true);
|
||
|
}
|
||
|
|
||
|
var validRanges = ranges.filter(matches);
|
||
|
|
||
|
var sortedRanges = validRanges.sort(SemverRange.compare);
|
||
|
|
||
|
return sortedRanges.pop() || null;
|
||
|
}
|
||
|
|
||
|
module.exports = findRange;
|