4 lines
65 B
JavaScript
4 lines
65 B
JavaScript
|
|
export function randomBool() {
|
||
|
|
return Math.random() > 0.5;
|
||
|
|
}
|