dissecting-rxjs icon indicating copy to clipboard operation
dissecting-rxjs copied to clipboard

maybe an error in Chapter 6 about ‘isEmpty’

Open vickmeng opened this issue 6 years ago • 0 comments

isEmpty第一段示例代码,不是应该在吐出第一条数据的时候吐出false吗?书上写的true

const source$ = interval(10000);

const isEmpty$ = source$.pipe( isEmpty() ); isEmpty$ .subscribe( console.log, () => { console.log('error'); }, () => { console.log('complete'); } );

// 10秒后 // false // complete

vickmeng avatar Nov 07 '18 08:11 vickmeng