| Current Path : /var/node/inatote/Inatote-Backend/node_modules/semver/functions/ |
| Current File : /var/node/inatote/Inatote-Backend/node_modules/semver/functions/valid.js |
const parse = require('./parse')
const valid = (version, options) => {
const v = parse(version, options)
return v ? v.version : null
}
module.exports = valid