* Return `true` if the given event is an instance of WheelEvent * * @static * @param {event} event The event to test * @returns {boolean} Return `true` if the event is an instance of WheelEvent, FALSE otherwise
(event)
| 779 | * @returns {boolean} Return `true` if the event is an instance of WheelEvent, FALSE otherwise |
| 780 | */ |
| 781 | static isWheelEvent(event) { |
| 782 | return event instanceof WheelEvent; |
| 783 | } |
| 784 | |
| 785 | /** |
| 786 | * Return `true` if the given event is a wheelup event |
no outgoing calls
no test coverage detected