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/clean.js |
const parse = require('./parse') const clean = (version, options) => { const s = parse(version.trim().replace(/^[=v]+/, ''), options) return s ? s.version : null } module.exports = clean