rickandmorty/node_modules/semver/functions/eq.js

4 lines
112 B
JavaScript
Raw Normal View History

2024-07-19 21:05:41 +03:00
const compare = require('./compare')
const eq = (a, b, loose) => compare(a, b, loose) === 0
module.exports = eq