From what I understand passive ensures the browser that event.preventDefault wont ever be called by the listener. As the consumer of this package has no control over the listener & event there is no point in making this configurable, you know that preventDefault won't get called and thus you should always use passive listener is possible.
From what I understand passive ensures the browser that
event.preventDefault
wont ever be called by the listener. As the consumer of this package has no control over the listener & event there is no point in making this configurable, you know that preventDefault won't get called and thus you should always use passive listener is possible.