paginateArray.js 105 Bytes
export const paginateArray = (array, perPage, page) => array.slice((page - 1) * perPage, page * perPage)