the-tip-top-backend/node_modules/semver/functions/eq.js
soufiane fc67cf6415
All checks were successful
the-tip-top-backend/pipeline/head This commit looks good
push
2025-10-24 14:14:46 +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