Files
opencrm/backend/node_modules/semver/functions/eq.js
T
Stefan Hacker 31f807fbd0 first commit
2026-01-29 01:16:54 +01: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