├── .gitignore ├── .travis.yml ├── MIGRATION.md ├── README.md ├── package.json ├── src ├── cache-properties.js ├── dataset.js ├── find-index.js ├── page-tree.js ├── page.js ├── record.js └── state.js └── test ├── dataset-test.js ├── index.js ├── page-tree.js ├── state-test.js └── test-server.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /lib 3 | /yarn.lock 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexyford/impagination/HEAD/.travis.yml -------------------------------------------------------------------------------- /MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexyford/impagination/HEAD/MIGRATION.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexyford/impagination/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexyford/impagination/HEAD/package.json -------------------------------------------------------------------------------- /src/cache-properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexyford/impagination/HEAD/src/cache-properties.js -------------------------------------------------------------------------------- /src/dataset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexyford/impagination/HEAD/src/dataset.js -------------------------------------------------------------------------------- /src/find-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexyford/impagination/HEAD/src/find-index.js -------------------------------------------------------------------------------- /src/page-tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexyford/impagination/HEAD/src/page-tree.js -------------------------------------------------------------------------------- /src/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexyford/impagination/HEAD/src/page.js -------------------------------------------------------------------------------- /src/record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexyford/impagination/HEAD/src/record.js -------------------------------------------------------------------------------- /src/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexyford/impagination/HEAD/src/state.js -------------------------------------------------------------------------------- /test/dataset-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexyford/impagination/HEAD/test/dataset-test.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexyford/impagination/HEAD/test/index.js -------------------------------------------------------------------------------- /test/page-tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexyford/impagination/HEAD/test/page-tree.js -------------------------------------------------------------------------------- /test/state-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexyford/impagination/HEAD/test/state-test.js -------------------------------------------------------------------------------- /test/test-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexyford/impagination/HEAD/test/test-server.js --------------------------------------------------------------------------------