ccc-tnt-psd2ui/npm-packages/win32-v2.4.x/semver/ranges/ltr.js

5 lines
213 B
JavaScript
Raw Permalink Normal View History

2023-07-24 02:36:46 +00:00
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