Paginate
Paginate copied to clipboard
A Simple JavaScript utility to provide pagination for Arrays.
Results
1
Paginate issues
Sort by
recently updated
recently updated
newest added
Nice and clean, thanks! I have extended with some little functions, if you are interested: This expose totalPages: ``` Paginate.prototype.pageCount = function () { return (this.totalPages); } ``` and this...