sendou.ink/app/utils/number.ts

4 lines
121 B
TypeScript

export function roundToNDecimalPlaces(num: number, n = 2) {
return Number((Math.round(num * 100) / 100).toFixed(n));
}