source:
node_modules/semver/functions/clean.js
Last change on this file was d24f17c, checked in by , 15 months ago | |
---|---|
|
|
File size: 191 bytes |
Line | |
---|---|
1 | const parse = require('./parse') |
2 | const clean = (version, options) => { |
3 | const s = parse(version.trim().replace(/^[=v]+/, ''), options) |
4 | return s ? s.version : null |
5 | } |
6 | module.exports = clean |
Note:
See TracBrowser
for help on using the repository browser.