pagepro

0.2.1 • Public • Published

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
}
 

Readme

Keywords

Package Sidebar

Install

npm i pagepro

Weekly Downloads

3

Version

0.2.1

License

MIT

Unpacked Size

2.52 kB

Total Files

4

Last publish

Collaborators

  • tcoats