Skip to content

Instantly share code, notes, and snippets.

@pinkhominid
Last active March 3, 2021 13:46
Show Gist options
  • Save pinkhominid/fd4b13fc7db6a34812cf281e96ee2673 to your computer and use it in GitHub Desktop.
Save pinkhominid/fd4b13fc7db6a34812cf281e96ee2673 to your computer and use it in GitHub Desktop.
browser event path find target match
export function eventPathFindTargetMatch(event, selector) {
return event.composedPath().find(target => target.matches?.(selector));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment