badgen.net/libs/utils/cov-format.js

10 wiersze
171 B
JavaScript
Czysty Zwykły widok Historia

/**
* Format coverage precision
*
* @param {Number|String} percent
*/
module.exports = (percent) => {
return Number(percent).toFixed(1).replace(/\.0$/, '') + '%'
}