ccc-tnt-psd2ui/npm-packages/mac-v2.4.x/semver/functions/valid.js

7 lines
162 B
JavaScript
Raw Normal View History

2023-07-24 03:13:08 +00:00
const parse = require('./parse')
const valid = (version, options) => {
const v = parse(version, options)
return v ? v.version : null
}
module.exports = valid