claude-web/node_modules/semver/functions/gt.js

6 lines
124 B
JavaScript
Raw Permalink Normal View History

2026-02-23 02:23:38 +00:00
'use strict'
const compare = require('./compare')
const gt = (a, b, loose) => compare(a, b, loose) > 0
module.exports = gt