times = {
const times = [];
for (const i of [
1, 10, 100, 1000, 1_000, 5_000, 10_000, 20_000, 30_000, 40_000
]) {
const t = Date.now();
"a".repeat(i).match(/([-.\w+]+)@([-\w]+(?:\.[-\w]+)+)/g);
times.push({ i: i, t: Date.now() - t });
}
return times;
}