stdproject/frontend/node_modules/semver/functions/eq.js

6 lines
126 B
JavaScript
Raw Normal View History

2025-05-30 13:43:31 +08:00
'use strict'
const compare = require('./compare')
const eq = (a, b, loose) => compare(a, b, loose) === 0
module.exports = eq