vvet_backend_1/node_modules/semver/functions/eq.js

4 lines
112 B
JavaScript
Raw Permalink Normal View History

2025-05-09 12:46:18 +05:30
const compare = require('./compare')
const eq = (a, b, loose) => compare(a, b, loose) === 0
module.exports = eq