Socket
Socket
Sign inDemoInstall

detect-passive-events

Package Overview
Dependencies
0
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    detect-passive-events

Detect if the browser supports passive events


Version published
Weekly downloads
203K
increased by3.28%
Maintainers
1
Install size
7.18 kB
Created
Weekly downloads
 

Readme

Source

Detect Passive Events

Detect if the browser supports passive event listeners.

Live detection test

Exports a reference to a singleton object (a micro state machine with an update function) with its state set to if the browser supports passive event listeners, as well as an update() function which re-runs the tests and updates the object's state.

Note that the code used in the detection is adapted from this Passive Events Explainer.

detectPassiveEvents micro state machine

const detectPassiveEvents = {
  hasSupport: boolean,

  // re-run the detection tests and update state
  update() {...},
}

Installing detect-passive-events

$ npm install detect-passive-events

Using detect-passive-events

import detectPassiveEvents from 'detect-passive-events';
// passive events are supported by the browser
if (detectPassiveEvents.hasSupport === true) {
  // set listeners like this
  document.addEventListener('scroll', handleScroll, { capture: false, passive: true });
}

// passive events are not supported by the browser
if (detectPassiveEvents.hasSupport === false) {
  // set listeners like this
  document.addEventListener('scroll', handleScroll, false);
}

// updating the state - most apps won't need to use this at all
detectPassiveEvents.update();

Note that the update() function is run once at the time of import to set the object's initial state, and generally doesn't need to be run again. If it doesn't have access to the window, then the state will be undefined (detect-passive-events will not throw an error), and you will need to call the update() function manually at a later time to update its state.

Part of the detect-it family

Keywords

FAQs

Last updated on 10 Sep 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc