Skip to content

Instantly share code, notes, and snippets.

View yezz123's full-sized avatar
🦀
Rusty

Yasser Tahiri yezz123

🦀
Rusty
View GitHub Profile
@yezz123
yezz123 / simple-pagination.js
Last active July 10, 2021 19:20 — 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;