eslintwork/node_modules/semver/functions/lte.js
Martin Donnelly 9cbf1eea5b init
2021-06-24 09:26:17 +01:00

4 lines
113 B
JavaScript

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