Icard/angular-clarity-master(work.../node_modules/semver/ranges/ltr.js

5 lines
213 B
JavaScript
Raw Normal View History

2024-07-16 15:23:22 +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