formatVersion.js 147 B

12345678910
  1. /**
  2. * @author oldj
  3. * @blog https://oldj.net
  4. */
  5. 'use strict'
  6. module.exports = (v) => {
  7. return 'v' + v.slice(0, 3).join('.') + ` (${v[3]})`
  8. }