Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. uploadPicture: Subject<UploadPicture> = new Subject<UploadPicture>();
  2. previewPictures$ = this.uploadPicture.pipe(
  3. scan(
  4. (pictures, newPicture) => [...pictures, newPicture],
  5. new Array<UploadPicture>()
  6. )
  7. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement