Skip to content

Commit 00a5ff4

Browse files
committed
Revert chnages for Number namespace
1 parent 16c515b commit 00a5ff4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/benchmark/options.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import {AverageCalculationEnum, BenchmarkOpts, ConvergenceEnum} from "../types.j
22

33
export const defaultBenchmarkOptions: Required<BenchmarkOpts> = {
44
minRuns: 1,
5-
maxRuns: Number.POSITIVE_INFINITY,
5+
maxRuns: Infinity,
66
minMs: 100,
7-
maxMs: Number.POSITIVE_INFINITY,
7+
maxMs: Infinity,
88
maxWarmUpRuns: 1000,
99
maxWarmUpMs: 500,
1010
convergeFactor: 0.5 / 100, // 0.5%
@@ -25,7 +25,7 @@ export function getBenchmarkOptionsWithDefaults(opts: BenchmarkOpts): Required<B
2525
const options = Object.assign({}, defaultBenchmarkOptions, opts);
2626

2727
if (options.noThreshold) {
28-
options.threshold = Number.POSITIVE_INFINITY;
28+
options.threshold = Infinity;
2929
}
3030

3131
if (options.maxMs && options.maxMs > options.timeoutBench) {

src/utils/git.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export async function getCurrentCommitInfo(): Promise<{
1111
const commitSha = await shell("git show -s --format=%H");
1212
const timestampStr = await shell("git show -s --format=%ct");
1313
const branchStr = await shell("git branch --show-current");
14-
const timestamp = Number.parseInt(timestampStr, 10);
14+
const timestamp = parseInt(timestampStr, 10);
1515

1616
if (!timestamp || Number.isNaN(timestamp)) {
1717
throw Error(`Invalid timestampStr ${timestampStr}`);

test/perf/iteration.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ describe("Array iteration", () => {
6868

6969
bench({
7070
id: "sum array with reduce no threshold",
71-
threshold: Number.POSITIVE_INFINITY,
71+
threshold: Infinity,
7272
fn: () => {
7373
arr.reduce((total, curr) => total + curr, 0);
7474
},

0 commit comments

Comments
 (0)