mirror of
https://github.com/github/codeql-action.git
synced 2025-12-30 03:00:13 +08:00
7 lines
227 B
JavaScript
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
|