diff --git a/README.md b/README.md index 74a39d3..944e4fb 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ This micro library provides that mechanism. npm install abortable-rx ``` -## Included +## Included 📖 [Full API documentation](https://unpkg.com/abortable-rx/docs/) ### Observable factories @@ -50,6 +50,8 @@ npm install abortable-rx - `mergeMap(project: (value: T, index: number, abortSignal: AbortSignal) => ObservableInput): OperatorFunction` Like RxJS `mergeMap`, but passes an AbortSignal that is aborted when the returned Observable is unsubscribed from. +📖 [Full API documentation](https://unpkg.com/abortable-rx/docs/) + ## Handling AbortError `forEach` and `toPromise` will reject the Promise with an `Error` if the signal is aborted.