Files
kemkas-frontend/src/domain-models/kockak.ts
T
morbalint 960a5a7d92 refactoring in progress checkpoint reached
goal: remove class by breaking it up into smaller functions
2023-09-23 15:29:41 +02:00

9 lines
136 B
TypeScript

export function dAny(sides: number) {
return Math.floor(Math.random() * sides) + 1;
}
export function d6() {
return dAny(6)
}