0.0.1 • Published 3 years ago

@emotionagency/touchmouse v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Library that provides a common interface for mouse and touch events

Instalation

npm i @emotionagency/touchmouse

or

yarn add @emotionagency/touchmouse

Usage

Basic example

import {mousedown, mousemove, mouseup} from '@emotionagency/touchmouse'

const cb = () => console.log('I am working')

mousedown.on(document.body, cb, {passive: true})
mousedown.off(document.body, cb)