UNPKG

@modern-kit/utils

Version:
9 lines (7 loc) 214 B
function percentage(value, total) { if (total <= 0) return 0; const percentage2 = value / total * 100; return Math.round(percentage2 * 100) / 100; } export { percentage }; //# sourceMappingURL=index.mjs.map