├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── circle.yml ├── hooks └── pre-commit ├── package.json ├── src ├── base.js ├── cursor.js ├── indexed.js ├── keyed.js └── utils.js ├── test └── cursor.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ "es2015", "stage-0" ] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | lib 3 | coverage 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbadger/immutable-cursor/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | dist 4 | coverage 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbadger/immutable-cursor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbadger/immutable-cursor/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbadger/immutable-cursor/HEAD/circle.yml -------------------------------------------------------------------------------- /hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbadger/immutable-cursor/HEAD/hooks/pre-commit -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbadger/immutable-cursor/HEAD/package.json -------------------------------------------------------------------------------- /src/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbadger/immutable-cursor/HEAD/src/base.js -------------------------------------------------------------------------------- /src/cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbadger/immutable-cursor/HEAD/src/cursor.js -------------------------------------------------------------------------------- /src/indexed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbadger/immutable-cursor/HEAD/src/indexed.js -------------------------------------------------------------------------------- /src/keyed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbadger/immutable-cursor/HEAD/src/keyed.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbadger/immutable-cursor/HEAD/src/utils.js -------------------------------------------------------------------------------- /test/cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbadger/immutable-cursor/HEAD/test/cursor.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbadger/immutable-cursor/HEAD/yarn.lock --------------------------------------------------------------------------------