UNPKG

@modern-kit/utils

Version:
11 lines (8 loc) 239 B
'use strict'; function percentage(value, total) { if (total <= 0) return 0; const percentage2 = value / total * 100; return Math.round(percentage2 * 100) / 100; } exports.percentage = percentage; //# sourceMappingURL=index.cjs.map