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