lanan-old/detection-user/node_modules/semver/functions/eq.js
愉快的大福 7dc28dc701 init
2024-07-17 14:16:22 +08:00

4 lines
112 B
JavaScript

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