Skip to content

Instantly share code, notes, and snippets.

@ddoronin
Last active April 1, 2019 13:37
Show Gist options
  • Save ddoronin/2491f99c54a3c408ea8d4d9c78450405 to your computer and use it in GitHub Desktop.
Save ddoronin/2491f99c54a3c408ea8d4d9c78450405 to your computer and use it in GitHub Desktop.
5 Latest
import { IRequest } from "src/models/request-composer";
import { scan } from "rxjs/operators";
export const overHistoryLatest5 =
scan((acc: IRequest[], r: IRequest) => [r, ...acc].slice(0, 5), []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment