2.0.0 • Published 6 years ago

compact-pagination v2.0.0

Weekly downloads
156
License
ISC
Repository
github
Last release
6 years ago

Pages

No fuss, opinionated pagination helper.

import compactPagination from 'compact-pagination'

compactPagination({
	totalSize: 10,
	currentIndex: 5,
	bufferSize: 1
});

/*
returns :
    [
        {page: 1},
        {isSeparator: true},
        {page: 4},
        {page: 5, isCurrent: true},
        {page: 6},
        {isSeparator: true},
        {page: 10}
    ]
which could be templated :
    1 … 4 5 6 … 10
*/
2.0.0

6 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago