1 2 3 4 5 6 7
module.exports = function (value, total) { if (total > 0) { return '' + ((value || 0) / total * 100) + '%'; } else { return '0%'; } };