WeakMap-based Event Listener.
import { listen } from "wmel"
// Add listener
const abort = listen(
document.querySelector("#some-button"), // target
"click", // type
({ target }) => console.log("clicked") // listener
);
// Abort listener
abort();
npm i wmel
jsPerf shows WMEL is ~60% faster than vanilla addEventListener.