Created
April 26, 2017 05:13
-
-
Save Ibro/aa2430381c5d1ca99cb856c2abc94066 to your computer and use it in GitHub Desktop.
RxJS fromEvent - Subscribing to mouse events - Coding Blast - www.codingblast.com
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {Observable} from 'rxjs'; | |
Observable | |
.fromEvent(document, 'mousemove') | |
.forEach(function next(value) { | |
console.log('next: ', value); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment