Last active
March 19, 2020 17:53
-
-
Save GabeDuarteM/24459e46ca5a0b87eaa765695bfb4ea0 to your computer and use it in GitHub Desktop.
utilities
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function paginateList<T>(list: T[], currentPage: number, totalPerPage: number) { | |
| const start = (currentPage - 1) * totalPerPage; | |
| const end = start + totalPerPage; | |
| const pageList = list.slice(start, end); | |
| return pageList; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| asdf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment