Socket
Socket
Sign inDemoInstall

has-passive-events

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

has-passive-events

Check if passive events are available on the current device


Version published
Weekly downloads
187K
decreased by-2.11%
Maintainers
1
Weekly downloads
 
Created

What is has-passive-events?

The has-passive-events npm package is a utility that helps you determine if the browser supports passive event listeners. Passive event listeners can improve the performance of scroll events by allowing the browser to perform optimizations.

What are has-passive-events's main functionalities?

Check for passive event listener support

This feature allows you to check if the current browser supports passive event listeners. The code sample demonstrates how to use the package to log whether passive event listeners are supported.

const hasPassiveEvents = require('has-passive-events');

if (hasPassiveEvents) {
  console.log('Passive event listeners are supported.');
} else {
  console.log('Passive event listeners are not supported.');
}

Other packages similar to has-passive-events

Keywords

FAQs

Package last updated on 26 Jan 2018

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc