Skip to content

Instantly share code, notes, and snippets.

@dutchcelt
Last active February 11, 2024 20:34
Show Gist options
  • Save dutchcelt/6f8a4f1568a0b43b3ea80a8fe3da7a49 to your computer and use it in GitHub Desktop.
Save dutchcelt/6f8a4f1568a0b43b3ea80a8fe3da7a49 to your computer and use it in GitHub Desktop.
Detect support for passive events
let passive = false;
window.addEventListener("detectPassiveSupport", null, Object.defineProperty({}, 'passive', {
get: function() {
passive = { passive: true };
}
}));
export { passive as default };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment