Current Path : /opt/alt/alt-nodejs22/root/lib/node_modules/npm/node_modules.bundled/semver/functions/ |
Current File : //opt/alt/alt-nodejs22/root/lib/node_modules/npm/node_modules.bundled/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