You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 20, 2018. It is now read-only.
Copy file name to clipboardExpand all lines: doc/api/core/operators/finally.md
+2-6Lines changed: 2 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,10 @@
4
4
Invokes a specified action after the source observable sequence terminates gracefully or exceptionally. There is an alias called `finallyAction` for browsers <IE9
5
5
6
6
#### Arguments
7
-
1.`predicate`*(`Function`)*: A function to test each source element for a condition; The callback is called with the following information:
8
-
1. the value of the element
9
-
2. the index of the element
10
-
3. the Observable object being subscribed
11
-
2.`[thisArg]`*(`Any`)*: Object to use as `this` when executing the predicate.
7
+
1.`action`*(`Function`)*: A function to invoke after the source observable sequence terminates.
12
8
13
9
#### Returns
14
-
*(`Observable`)*: An observable sequence that contains elements from the input sequence that satisfy the condition.
10
+
*(`Observable`)*: The source sequence with the side-effecting behavior applied.
0 commit comments