mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 17:50:07 +08:00
6 lines
124 B
JavaScript
6 lines
124 B
JavaScript
'use strict'
|
|
|
|
const compare = require('./compare')
|
|
const lt = (a, b, loose) => compare(a, b, loose) < 0
|
|
module.exports = lt
|