-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(*): utilize rxjs(5.5 and above) lettable operators
目的: - 更清晰地表达一些读入流、输出流的操作,并帮助进一步提取其中的纯函数; - 通过 pipe 方法组合纯函数,令流管理更像搭积木; - 令每个模块各自对 rxjs 操作符的依赖更清晰。
- Loading branch information
Showing
9 changed files
with
277 additions
and
255 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,3 @@ | ||
import 'rxjs/add/operator/combineAll' | ||
import 'rxjs/add/operator/do' | ||
import 'rxjs/add/operator/map' | ||
import 'rxjs/add/operator/publishReplay' | ||
import 'rxjs/add/operator/switchMap' | ||
import 'rxjs/add/operator/take' | ||
|
||
export { QueryToken, SelectorMeta } from '../storage/modules/QueryToken' | ||
export { ProxySelector } from '../storage/modules/ProxySelector' | ||
export * from '../interface' |
Oops, something went wrong.