├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── index.js ├── package.json ├── readme.md ├── tests ├── es5-deep-array.fixture.js ├── es5-deep.fixture.js ├── es5.fixture.js ├── getIn.spec.js ├── setup.js ├── simulate.spec.js └── updateIn.spec.js └── utils ├── getIn.js └── updateIn.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srph/react-link-state/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srph/react-link-state/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | tests 2 | .travis.yml 3 | .gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srph/react-link-state/HEAD/.travis.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srph/react-link-state/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srph/react-link-state/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srph/react-link-state/HEAD/readme.md -------------------------------------------------------------------------------- /tests/es5-deep-array.fixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srph/react-link-state/HEAD/tests/es5-deep-array.fixture.js -------------------------------------------------------------------------------- /tests/es5-deep.fixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srph/react-link-state/HEAD/tests/es5-deep.fixture.js -------------------------------------------------------------------------------- /tests/es5.fixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srph/react-link-state/HEAD/tests/es5.fixture.js -------------------------------------------------------------------------------- /tests/getIn.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srph/react-link-state/HEAD/tests/getIn.spec.js -------------------------------------------------------------------------------- /tests/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srph/react-link-state/HEAD/tests/setup.js -------------------------------------------------------------------------------- /tests/simulate.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srph/react-link-state/HEAD/tests/simulate.spec.js -------------------------------------------------------------------------------- /tests/updateIn.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srph/react-link-state/HEAD/tests/updateIn.spec.js -------------------------------------------------------------------------------- /utils/getIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srph/react-link-state/HEAD/utils/getIn.js -------------------------------------------------------------------------------- /utils/updateIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srph/react-link-state/HEAD/utils/updateIn.js --------------------------------------------------------------------------------