6 lines
85 B
JavaScript
6 lines
85 B
JavaScript
export class Random {
|
|
static chance(odds) {
|
|
return Math.random() < odds;
|
|
}
|
|
}
|