We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
this
1 parent 0506ea0 commit 9f8e375Copy full SHA for 9f8e375
src/Notification.ts
@@ -107,7 +107,7 @@ export class Notification<T> {
107
if (typeof value !== 'undefined') {
108
return new Notification('N', value);
109
}
110
- return this.undefinedValueNotification;
+ return Notification.undefinedValueNotification;
111
112
113
/**
@@ -126,6 +126,6 @@ export class Notification<T> {
126
* @return {Notification<any>} The valueless "complete" Notification.
127
*/
128
static createComplete(): Notification<any> {
129
- return this.completeNotification;
+ return Notification.completeNotification;
130
131
0 commit comments