2
0
Files
cal/calcom/apps/web/abTest/utils.ts
2024-08-09 00:39:27 +02:00

10 lines
282 B
TypeScript

import { AB_TEST_BUCKET_PROBABILITY } from "@calcom/lib/constants";
const cryptoRandom = () => {
return crypto.getRandomValues(new Uint8Array(1))[0] / 0xff;
};
export const getBucket = () => {
return cryptoRandom() * 100 < AB_TEST_BUCKET_PROBABILITY ? "future" : "legacy";
};