A complete list of RxJS 5 operators with easy to understand explanations and runnable examples.
This file contains hidden or 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
| license: mit |
I hereby claim:
- I am chrisdamba on github.
- I am christopherda (https://keybase.io/christopherda) on keybase.
- I have a public key ASDNXglfLuVao3fvuHUzQj9QNnMuWXb2Cls0U-jryg542Ao
To claim this, I am signing this object:
This file contains hidden or 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
| const isLoggedIn = (context, event) => context.isAuthenticated | |
| const canChooseDate = (context, event) => context.lessonType && context.subject | |
| const canConfirm = (context, event) => context.date && context.subject | |
| const scheduleMachine = Machine( | |
| { | |
| id: 'schedule', | |
| initial: 'start', | |
| context: { | |
| isAuthenticated: true, |
OlderNewer