UNPKG

@virsas/vue-components

Version:

Virsas Vue3 and/or Quasar2 component library

7 lines (6 loc) 186 B
export const pagedArray = (array, currentPage, itemsPerPage) => { return array.slice( (currentPage - 1) * itemsPerPage, (currentPage - 1) * itemsPerPage + itemsPerPage ); };