Demo: never
The NEVER emits no items and never emits a complete notification either.
//emits no item and never completes
let input = NEVER;
//the defaultIfEmpty will not fire
let process = defaultIfEmpty(10);
let output = input.pipe(process).subscribe(v=>console.log(v))