8 lines
194 B
TypeScript
Raw Normal View History

2022-11-29 15:55:47 +01:00
export function roundToOneDecimal(num: number): number {
return Math.round(num * 10) / 10;
}
2022-12-05 12:19:46 +01:00
export function randomPositiveOrNegative(): number {
return Math.random() < 0.5 ? 1 : -1;
}