monquigrid/node_modules/semver/ranges/valid.js
2025-07-16 23:56:37 +00:00

13 lines
326 B
JavaScript

'use strict'
const Range = require('../classes/range')
const validRange = (range, options) => {
try {
// Return '*' instead of '' so that truthiness works.
// This will throw if it's invalid anyway
return new Range(range, options).range || '*'
} catch (er) {
return null
}
}
module.exports = validRange