Skip to content

Commit 7fc67b2

Browse files
🚧 progress(profile/iterator): Fix timer title.
1 parent 2c891cf commit 7fc67b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_profile/iterator.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ console.log('number of operations:', M * N);
1818
const t = from(COUNTER, range(M));
1919
console.timeEnd('prepare');
2020

21-
console.time('split');
21+
console.time('iterator');
2222
for (let k = 0; k < N; ++k) {
2323
// eslint-disable-next-line no-unused-vars
2424
for (const _x of t);
2525
}
2626

27-
console.timeEnd('split');
27+
console.timeEnd('iterator');

0 commit comments

Comments
 (0)