Files
2026-01-23 01:33:35 +01:00

5 lines
138 B
JavaScript

const safeMathLog = Math.log;
export function runIdToFrequency(runId) {
return 2 + ~~(safeMathLog(runId + 1) * 0.4342944819032518);
}