aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/helpers/handlebars/percent.js
blob: 24c871add4e9b64e44db42afa8464b8727bdfa68 (plain)
1
2
3
4
5
6
7
module.exports = function (value, total) {
  if (total > 0) {
    return '' + ((value || 0) / total * 100) + '%';
  } else {
    return '0%';
  }
};