mirror of
https://github.com/MartinKral/Slash-The-Hordes
synced 2025-10-15 03:26:00 +00:00
4 lines
97 B
TypeScript
4 lines
97 B
TypeScript
![]() |
export function roundToOneDecimal(num: number): number {
|
||
|
return Math.round(num * 10) / 10;
|
||
|
}
|