source:
node_modules/semver/functions/compare.js@
d24f17c
Last change on this file since d24f17c was d24f17c, checked in by , 15 months ago | |
---|---|
|
|
File size: 156 bytes |
Rev | Line | |
---|---|---|
[d24f17c] | 1 | const SemVer = require('../classes/semver') |
2 | const compare = (a, b, loose) => | |
3 | new SemVer(a, loose).compare(new SemVer(b, loose)) | |
4 | ||
5 | module.exports = compare |
Note:
See TracBrowser
for help on using the repository browser.