BE-SPAN/node_modules/semver/ranges/ltr.js
githubna-ilham 722cd440e8 first commit
2024-10-20 22:04:16 +07:00

5 lines
213 B
JavaScript

const outside = require('./outside')
// Determine if version is less than all the versions possible in the range
const ltr = (version, range, options) => outside(version, range, '<', options)
module.exports = ltr