cvat/tests/perf/scripts/utils/random.js

4 lines
65 B
JavaScript

export function randomBool() {
return Math.random() > 0.5;
}