Skip to content

Instantly share code, notes, and snippets.

View teneeto's full-sized avatar
🎯
Focusing

Etotaziba Olei teneeto

🎯
Focusing
View GitHub Profile
@teneeto
teneeto / simple-pagination.js
Created September 12, 2019 19:46 — 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;