android-wrapper/@capacitor/cli/node_modules/semver/functions/valid.js

7 lines
162 B
JavaScript
Raw Normal View History

2025-06-18 18:50:46 +02:00
const parse = require('./parse')
const valid = (version, options) => {
const v = parse(version, options)
return v ? v.version : null
}
module.exports = valid