source:
node_modules/semver/functions/satisfies.js
Last change on this file was d24f17c, checked in by , 15 months ago | |
---|---|
|
|
File size: 233 bytes |
Rev | Line | |
---|---|---|
[d24f17c] | 1 | const Range = require('../classes/range') |
2 | const satisfies = (version, range, options) => { | |
3 | try { | |
4 | range = new Range(range, options) | |
5 | } catch (er) { | |
6 | return false | |
7 | } | |
8 | return range.test(version) | |
9 | } | |
10 | module.exports = satisfies |
Note:
See TracBrowser
for help on using the repository browser.