Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/semver/functions/cmp.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Alex Kalyvitis
update @actions/tool-cache, install semver, nock
48 lines (39 sloc)
907 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const eq = require('./eq') | |
const neq = require('./neq') | |
const gt = require('./gt') | |
const gte = require('./gte') | |
const lt = require('./lt') | |
const lte = require('./lte') | |
const cmp = (a, op, b, loose) => { | |
switch (op) { | |
case '===': | |
if (typeof a === 'object') | |
a = a.version | |
if (typeof b === 'object') | |
b = b.version | |
return a === b | |
case '!==': | |
if (typeof a === 'object') | |
a = a.version | |
if (typeof b === 'object') | |
b = b.version | |
return a !== b | |
case '': | |
case '=': | |
case '==': | |
return eq(a, b, loose) | |
case '!=': | |
return neq(a, b, loose) | |
case '>': | |
return gt(a, b, loose) | |
case '>=': | |
return gte(a, b, loose) | |
case '<': | |
return lt(a, b, loose) | |
case '<=': | |
return lte(a, b, loose) | |
default: | |
throw new TypeError(`Invalid operator: ${op}`) | |
} | |
} | |
module.exports = cmp |