We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f13f51 commit ea031f3Copy full SHA for ea031f3
src/task.ts
@@ -533,7 +533,7 @@ export class Task extends EventTarget {
533
}
534
535
sortSamples(throughputSamples)
536
- const throughputStatistics = getStatisticsSorted(throughputSamples, this.#bench.retainSamples)
+ const throughputStatistics = getStatisticsSorted(throughputSamples, this.#retainSamples)
537
538
/* eslint-disable perfectionist/sort-objects */
539
this.#result = {
src/utils.ts
@@ -5,9 +5,9 @@ import type { Task } from './task'
5
import type {
6
ConsoleTableConverter,
7
Fn,
8
+ JSRuntime,
9
Samples,
10
SortedSamples,
- JSRuntime,
11
Statistics,
12
} from './types'
13
0 commit comments