Skip to content

Instantly share code, notes, and snippets.

@jdjuan
Created February 21, 2018 15:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jdjuan/fe691f0648ef000b09949864f1434819 to your computer and use it in GitHub Desktop.
Save jdjuan/fe691f0648ef000b09949864f1434819 to your computer and use it in GitHub Desktop.
const { fromEvent } = Rx.Observable;
const move$ = fromEvent(document, 'mousemove');
const log = x => console.log(x);
move$.subscribe(log);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment