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.
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/throttlefirst.js"View in source")
3
3
4
-
Ignores values from an observable sequence which are followed by another value before dueTime.
4
+
Returns an Observable that emits only the first item emitted by the source Observable during sequential time windows of a specified duration.
5
5
6
6
#### Arguments
7
7
1.`windowDuration`*(`Number`)*: Time to wait before emitting another item after emitting the last item (specified as an integer denoting milliseconds).
@@ -27,7 +27,7 @@ var source = Rx.Observable.from(times)
0 commit comments