File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ export class Subscriber<T> extends Subscription implements Observer<T> {
68
68
* @param {T } [value] The `next` value.
69
69
* @return {void }
70
70
*/
71
- next ( value ? : T ) : void {
71
+ next ( value : T ) : void {
72
72
if ( this . isStopped ) {
73
73
handleStoppedNotification ( nextNotification ( value ) , this ) ;
74
74
} else {
@@ -203,7 +203,7 @@ export class SafeSubscriber<T> extends Subscriber<T> {
203
203
// The first argument is a function, not an observer. The next
204
204
// two arguments *could* be observers, or they could be empty.
205
205
partialObserver = {
206
- next : ( observerOrNext ?? undefined ) as ( ( ( value : T ) => void ) | undefined ) ,
206
+ next : ( observerOrNext ?? undefined ) as ( ( value : T ) => void ) | undefined ,
207
207
error : error ?? undefined ,
208
208
complete : complete ?? undefined ,
209
209
} ;
You can’t perform that action at this time.
0 commit comments