Registers an event listener in the global scope, which will be called synchronously whenever the event type
is dispatched.
addEventListener('unload', () => { console.log('All finished!'); });
...
dispatchEvent(new Event('unload'));
© 2018–2021 the Deno authors
https://doc.deno.land/deno/stable/~/addEventListener