Skip to content

Instantly share code, notes, and snippets.

@naveenjain07
naveenjain07 / simple-pagination.js
Created September 18, 2019 10:14 — 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;