Skip to content

y5labs/pagepro

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pagepro

Pagination calculations

console.log(pagepro({
  totalitems: 320,
  itemsperpage: 25,
  currentpage: 2
}));

// output
{
  totalitems: 320,
  totalpages: 13,
  itemsperpage: 25,
  currentpage: 2,
  hasnextpage: true,
  hasprevpage: true,
  pagestartindex: 25,
  pageendindex: 49,
  itemsonpage: 25
}

About

Pagination calculations

Resources

License

Stars

Watchers

Forks

Packages

No packages published