campus-errand/miniapp/node_modules/fast-check/lib/cjs/check/property/IRawProperty.js
2026-03-01 05:01:47 +08:00

8 lines
253 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.runIdToFrequency = runIdToFrequency;
const safeMathLog = Math.log;
function runIdToFrequency(runId) {
return 2 + ~~(safeMathLog(runId + 1) * 0.4342944819032518);
}