I have list, that should simulate the stream :
list = [ {name : \'Str1\', age: 10}, {name : \'Str2\', age: 10}, {n
I think this is more appropriate solution:
Observable.of(this.list).map(x => x.slice(this.currentPage * this.pageSize)).map(x => x.slice(0, this.pageSize)).subscribe(data => this.pagerList = data, console.error);