File "valid.js"
Full Path: C:/wamp64/www/Seleccion/node_modules/semver/functions/valid.js
File size: 176 bytes
MIME-type: text/plain
Charset: utf-8
'use strict'
const parse = require('./parse')
const valid = (version, options) => {
const v = parse(version, options)
return v ? v.version : null
}
module.exports = valid