Skip to content

Instantly share code, notes, and snippets.

View nestorrente's full-sized avatar
🏠
Working from home

Néstor Pérez González nestorrente

🏠
Working from home
View GitHub Profile
@nestorrente
nestorrente / customizablePaginationAlgorithm.js
Last active February 13, 2020 07:59
This function allows you to generate a fully-customizable pagination
function customizablePaginationAlgorithm(currentPage, totalPages, options = {}) {
const {
margin = 2,
outerMargin = margin,
afterFirst = outerMargin,
beforeLast = outerMargin,
innerMargin = margin,
beforeCurrent = innerMargin,
afterCurrent = innerMargin,