1
2
3
4
5
6
7
// Vals have a limit of 256kb across the sum of their parts (logs, code, email, output, error)
export const hugeValTotal = (() => {
const big = new Array(50000).fill(1);
console.log(big);
console.email(big);
return big;
})();