ship-gis/node_modules/semver/functions/eq.js
2026-01-22 09:14:01 +09:00

6 lines
126 B
JavaScript

'use strict'
const compare = require('./compare')
const eq = (a, b, loose) => compare(a, b, loose) === 0
module.exports = eq