//memory leaker export function leak(mb: number): void { if (!window.beelzejuice) { window.beelzejuice = []; //weird fanfic reference; i've seen this name used multiple times for alcoholic beverages } const id = Math.random().toString(36).slice(2); window.beelzejuice.push( new Uint8Array(Math.floor(mb * 1024 * 1024)).fill(666) ); }