mirror of
https://github.com/MartinKral/Slash-The-Hordes
synced 2025-01-14 06:51:30 +00:00
8 lines
194 B
TypeScript
8 lines
194 B
TypeScript
export function roundToOneDecimal(num: number): number {
|
|
return Math.round(num * 10) / 10;
|
|
}
|
|
|
|
export function randomPositiveOrNegative(): number {
|
|
return Math.random() < 0.5 ? 1 : -1;
|
|
}
|