Skip to content

Commit fb48d3b

Browse files
committed
Remove stray debug code
1 parent 3a2c32b commit fb48d3b

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apeleghq/benchmark",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "A statistically rigorous benchmarking library with paired t-tests, baseline correction, and confidence intervals",
55
"type": "module",
66
"main": "./dist/index.cjs",

src/utils.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ export function randIntInRange(min: number, max: number): number {
6464
const val = Math.floor(Math.random() * 0x20000000000000); // 2^53
6565
const limit = Math.floor(0x20000000000000 / range) * range;
6666
if (val < limit) {
67-
console.error(min + (range - (val % range)), { min, range, val });
6867
return min + (range - 1 - (val % range));
6968
}
7069
}

0 commit comments

Comments
 (0)