Package Exports
- paginationator
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (paginationator) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
paginationator

Paginate an array into pages of items.
Install with npm
$ npm i paginationator --save
Usage
var paginationator = require('paginationator');
API
paginationator
Paginate an array with given options and return a Page
object containing an array of pages
with pagination information.
Params
arr
{Array}: Array of items to paginateoptions
{Object}: Additional options to control paginationoptions.limit
{Number}: Number of items per page (defaults to 10)returns
{Object}: paginated pages
Example
var pages = paginationator([1, 2, 3, 4, 5], {limit: 2});
//=> { pages: [
//=> { idx: 0, total: 3, current: 1, items: [1, 2], first: 1, last: 3, next: 2 },
//=> { idx: 1, total: 3, current: 2, items: [3, 4], first: 1, last: 3, prev: 1, next: 3 },
//=> { idx: 2, total: 3, current: 3, items: [5], first: 1, last: 3, prev: 2 }
//=> ]}
Page
Page constructor
Params
page
{Object}: optional page object to populate initial values.
Example
var page = new Page();
Pages
Pages constructor
Params
pages
{Array}: Optional array of pages to initialize thepages
array.
Example
var pages = new Pages();
.addPage
Add a page to the list.
Params
page
{Object}: Plain object or instance of aPage
returns
{Object}: Returnsthis
for chaining
Example
pages.addPage({items: [1, 2, 3]});
Related projects
- assemble: Static site generator for Grunt.js, Yeoman and Node.js. Used by Zurb Foundation, Zurb Ink, H5BP/Effeckt,… more | homepage
- template: Render templates using any engine. Supports, layouts, pages, partials and custom template types. Use template… more | homepage
- templates: System for creating and managing template collections, and rendering templates with any node.js template engine.… more | homepage
- verb: Documentation generator for GitHub projects. Verb is extremely powerful, easy to use, and is used… more | homepage
Running tests
Install dev dependencies:
$ npm i -d && npm test
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Author
Brian Woodward
License
Copyright © 2015 Brian Woodward Released under the MIT license.
This file was generated by verb-cli on September 10, 2015.