FaktenZahl/backend/node_modules/semver/ranges/ltr.js
Marc Wieland 3489892120 First
2025-06-16 16:09:54 +02: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