Skip to content

Instantly share code, notes, and snippets.

View zulfio's full-sized avatar

Zulfi zulfio

View GitHub Profile
@zulfio
zulfio / simple-pagination.js
Created May 10, 2022 04:19 — forked from kottenator/simple-pagination.js
Simple pagination algorithm
// Implementation in ES6
function pagination(c, m) {
var current = c,
last = m,
delta = 2,
left = current - delta,
right = current + delta + 1,
range = [],
rangeWithDots = [],
l;