2022-11-29 15:55:47 +01:00

4 lines
97 B
TypeScript

export function roundToOneDecimal(num: number): number {
return Math.round(num * 10) / 10;
}