mirror of
https://github.com/funamitech/mastodon
synced 2024-12-12 05:39:02 +09: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;
|