source:
frontend/node_modules/semver/functions/compare.js
| Last change on this file was 9af201e, checked in by , 11 days ago | |
|---|---|
|
|
| File size: 170 bytes | |
| Line | |
|---|---|
| 1 | 'use strict' |
| 2 | |
| 3 | const SemVer = require('../classes/semver') |
| 4 | const compare = (a, b, loose) => |
| 5 | new SemVer(a, loose).compare(new SemVer(b, loose)) |
| 6 | |
| 7 | module.exports = compare |
Note:
See TracBrowser
for help on using the repository browser.
