stdproject/frontend/node_modules/semver/ranges/ltr.js
2025-05-30 13:43:31 +08:00

7 lines
227 B
JavaScript

'use strict'
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