CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
clean.js7 linesDownload Raw Back to functions
1const parse = require('./parse')2const clean = (version, options) => {3  const s = parse(version.trim().replace(/^[=v]+/, ''), options)4  return s ? s.version : null5}6module.exports = clean7