sendou.ink/app/utils/number.ts
2022-06-05 12:45:58 +03:00

4 lines
116 B
TypeScript

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