ccc-tnt-psd2ui/npm-packages/win32-v2.4.x/semver/functions/gte.js
2023-07-24 10:36:46 +08:00

4 lines
113 B
JavaScript

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