Skip to content

Instantly share code, notes, and snippets.

View mahdavipanah's full-sized avatar
💻
Wired in

Hamidreza Mahdavipanah mahdavipanah

💻
Wired in
View GitHub Profile
@mahdavipanah
mahdavipanah / simple-pagination.js
Last active July 23, 2016 16:42 — forked from kottenator/simple-pagination.js
Simple pagination algorithm
// Implementation in ES6
function pagination(c, m, delta) {
var current = c,
last = m,
left = current - delta,
right = current + delta,
range = [],
rangeWithDots = [],
l;