mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-22 15:09:16 -05:00
4 lines
116 B
TypeScript
4 lines
116 B
TypeScript
export function roundToTwoDecimalPlaces(num: number) {
|
|
return Number((Math.round(num * 100) / 100).toFixed(2));
|
|
}
|