Skip to content

Instantly share code, notes, and snippets.

@irrationnelle
Last active January 17, 2020 04:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save irrationnelle/2679750ce33f3b0fef6594b5b58b04f3 to your computer and use it in GitHub Desktop.
Save irrationnelle/2679750ce33f3b0fef6594b5b58b04f3 to your computer and use it in GitHub Desktop.
import { from, of } from "rxjs";
import { bufferCount, concatMap } from "rxjs/operators";
class Test {
someArray = [1,2,3,4,5,6,7,8,9,10,11,12];
constructor() {
from(this.someArray).pipe(
bufferCount(3),
concatMap((dividedArray: number[]) => of(dividedArray)),
).subscribe(console.log)
}
}
const test = new Test();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment