Skip to content

Instantly share code, notes, and snippets.

@janpaepke
Created July 4, 2022 10:12
Show Gist options
  • Select an option

  • Save janpaepke/c62fb8c4ea888147195c3e94f41abb00 to your computer and use it in GitHub Desktop.

Select an option

Save janpaepke/c62fb8c4ea888147195c3e94f41abb00 to your computer and use it in GitHub Desktop.
export const reversibleEvent = (target, listener, callback) => {
target.addEventListener(listener, callback);
return () => target.removeEventListener(listener, callback);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment