animate/webGl/my-threejs-test/node_modules/semver/functions/gte.js

4 lines
113 B
JavaScript
Raw Normal View History

2024-06-24 09:24:00 +00:00
const compare = require('./compare')
const gte = (a, b, loose) => compare(a, b, loose) >= 0
module.exports = gte