選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

7 行
191 B

  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