Skip to content

Commit

Permalink
Add description
Browse files Browse the repository at this point in the history
  • Loading branch information
compulim committed Jun 8, 2024
1 parent ba0f601 commit f062b8d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,8 @@ for await (const value of readerToAsyncIterableIterator(readableStream.getReader

## Converts `Observable` into `ReadableStream`

`ReadableStream` is powerful for transforming and piping stream of data. It can be formed using data from both push-based and pull-based source with backpressuree.

```ts
const observable = Observable.from([1, 2, 3]);
const readable = observableSubscribeAsReadable(observable);
Expand Down

0 comments on commit f062b8d

Please sign in to comment.