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

6 lines
127 B
JavaScript
Raw Normal View History

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