mirror of
https://github.com/mastodon/mastodon.git
synced 2025-06-16 18:19:13 +00:00
7 lines
273 B
JavaScript
7 lines
273 B
JavaScript
// Package imports.
|
|
import detectPassiveEvents from 'detect-passive-events';
|
|
|
|
// This will either be a passive lister options object (if passive
|
|
// events are supported), or `false`.
|
|
export const withPassive = detectPassiveEvents.hasSupport ? { passive: true } : false;
|