Skip to content

Instantly share code, notes, and snippets.

View Mutefish0's full-sized avatar

Ivancing Mutefish0

  • Beijing
View GitHub Profile
@Mutefish0
Mutefish0 / async_generator_perf.js
Last active October 31, 2023 09:56
Async Generator Performance
const C = 20_000_000;
async function* AG() {
const ret = [];
for (let i = 0; i < C; i++) {
ret.push(i);
}
for (const item of ret) {
yield item;
}