cleanup
Some checks failed
Deploy Backend / deploy (push) Failing after 2m2s
Deploy Website / deploy (push) Failing after 1m56s

This commit is contained in:
Lee
2024-10-12 03:37:54 +01:00
parent 97a91d7249
commit f8b97e3471
6 changed files with 32 additions and 14 deletions

View File

@ -13,3 +13,14 @@ export function isProduction() {
export function delay(ms: number) {
return new Promise(resolve => setTimeout(resolve, ms));
}
/**
* Gets the page from a rank.
*
* @param rank the rank
* @param itemsPerPage the items per page
* @returns the page
*/
export function getPageFromRank(rank: number, itemsPerPage: number) {
return Math.floor(rank / itemsPerPage) + 1;
}