dns-witch.net.eu.org/node_modules/semver/functions/eq.js

6 lines
126 B
JavaScript
Raw Normal View History

2025-07-05 16:19:59 +00:00
'use strict'
const compare = require('./compare')
const eq = (a, b, loose) => compare(a, b, loose) === 0
module.exports = eq