UNPKG

@functional-lib/pagination

Version:

This is the pagination functional library

9 lines (7 loc) 242 B
import {map} from'fantasy-land'; import {tagged} from 'daggy'; const Page = tagged('Page', ['page', 'text']) Page.prototype[map] = Page.prototype.map = function (f) { return f({page: this.page, text: this.text}); } module.exports = {Page}