Last active
February 9, 2019 13:39
-
-
Save cartant/756fb7504badc4ae88a253af2242eb69 to your computer and use it in GitHub Desktop.
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
| import { range } from "rxjs"; | |
| import { debug } from "./debug"; | |
| const source = range(1, 2).pipe(debug()); | |
| console.log("first use:"); | |
| source.subscribe(); | |
| console.log("second use:"); | |
| source.subscribe(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment