Skip to content

Instantly share code, notes, and snippets.

@dbazile
Created June 13, 2016 16:32
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 dbazile/6f0f014c3fa413eb2341eeb98fdcea6f to your computer and use it in GitHub Desktop.
Save dbazile/6f0f014c3fa413eb2341eeb98fdcea6f to your computer and use it in GitHub Desktop.
Because looking it up every time is a PITA
export function paginate({startIndex, count, totalCount}) {
return {
page: Math.ceil(startIndex / count),
pages: Math.ceil(totalCount / count)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment