astro-ghostcms/.pnpm-store/v3/files/3c/178f961525f0aa9bf295c988df6...

7 lines
191 B
Plaintext

const parse = require('./parse')
const clean = (version, options) => {
const s = parse(version.trim().replace(/^[=v]+/, ''), options)
return s ? s.version : null
}
module.exports = clean