-
-
Save web20opensource/480610c19459be2cb1bc to your computer and use it in GitHub Desktop.
Learning RxJs
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
| return movieLists.map( | |
| (cat) => { | |
| return cat.videos.map ( (v,v2,v3) => { | |
| debugger; | |
| return v.boxarts.filter( (box,filter2,filter3) => { | |
| debugger; | |
| return box.width=='150' | |
| }) | |
| .map( (my150,box2,box3) => { | |
| debugger; | |
| return { | |
| 'id': v.id , | |
| 'title' : v.title , | |
| 'boxart': my150.url | |
| } | |
| }) | |
| }).concatAll() | |
| }).concatAll() |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
http://jhusain.github.io/learnrx/