GoScrobble/web/node_modules/semver/functions/valid.js

7 lines
162 B
JavaScript
Raw Permalink Normal View History

2022-04-25 02:47:15 +00:00
const parse = require('./parse')
const valid = (version, options) => {
const v = parse(version, options)
return v ? v.version : null
}
module.exports = valid