the-tip-top-backend/node_modules/semver/functions/compare-loose.js
soufiane fc67cf6415
All checks were successful
the-tip-top-backend/pipeline/head This commit looks good
push
2025-10-24 14:14:46 +02:00

6 lines
132 B
JavaScript

'use strict'
const compare = require('./compare')
const compareLoose = (a, b) => compare(a, b, true)
module.exports = compareLoose