Yiou Chen

Results 3 issues of Yiou Chen

The example [here](https://github.com/xgrommx/rx-book/tree/master/content/guidelines/when) uses `throttle` ``` var input = document.getElementById('input'); var dictionarySuggest = Rx.Observable.fromEvent(input, 'keyup') .map(() => input.value) .filter(text => !!text) .distinctUntilChanged() .throttle(250) .flatMapLatest(searchWikipedia) .subscribe( results => { list =...

## 问题描述 Issue Description Add support for React ### 怎么了 What This is a cool project that I want to use for my personal blog. But it only supports Vue....