FaktenZahl/backend/node_modules/semver/functions/eq.js
Marc Wieland 3489892120 First
2025-06-16 16:09:54 +02:00

6 lines
126 B
JavaScript

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