ccc-tnt-psd2ui/npm-packages/mac-v2.4.x/semver/functions/lte.js

4 lines
113 B
JavaScript
Raw Permalink Normal View History

2023-07-24 03:13:08 +00:00
const compare = require('./compare')
const lte = (a, b, loose) => compare(a, b, loose) <= 0
module.exports = lte