hasValue
Returns
var onNext = Rx.Notification.createOnNext(42);
console.log(onNext.hasValue);
// => true
var onCompleted = Rx.Notification.createOnCompleted();
console.log(onCompleted.hasValue);
// => falseExample
Last updated
var onNext = Rx.Notification.createOnNext(42);
console.log(onNext.hasValue);
// => true
var onCompleted = Rx.Notification.createOnCompleted();
console.log(onCompleted.hasValue);
// => falseLast updated