You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
775 B
19 lines
775 B
"use strict"; |
|
var skipUntil_1 = require('../operators/skipUntil'); |
|
/** |
|
* Returns an Observable that skips items emitted by the source Observable until a second Observable emits an item. |
|
* |
|
* <img src="./img/skipUntil.png" width="100%"> |
|
* |
|
* @param {Observable} notifier - The second Observable that has to emit an item before the source Observable's elements begin to |
|
* be mirrored by the resulting Observable. |
|
* @return {Observable<T>} An Observable that skips items from the source Observable until the second Observable emits |
|
* an item, then emits the remaining items. |
|
* @method skipUntil |
|
* @owner Observable |
|
*/ |
|
function skipUntil(notifier) { |
|
return skipUntil_1.skipUntil(notifier)(this); |
|
} |
|
exports.skipUntil = skipUntil; |
|
//# sourceMappingURL=skipUntil.js.map
|