IOweb/node_modules/semver/functions/eq.js
2026-07-03 15:07:38 -05:00

5 lines
126 B
JavaScript

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