BE-SPAN/node_modules/semver/functions/gte.js
githubna-ilham 722cd440e8 first commit
2024-10-20 22:04:16 +07:00

4 lines
113 B
JavaScript

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