├── .babelrc ├── .gitignore ├── .npmignore ├── README.md ├── package.json ├── src ├── UpdateIfChanged.js ├── __tests__ │ ├── UpdateIfChanged-test.js │ └── shouldComponentUpdate-test.js ├── index.js └── shouldComponentUpdate.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "react"] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-update-if-changed/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-update-if-changed/HEAD/package.json -------------------------------------------------------------------------------- /src/UpdateIfChanged.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-update-if-changed/HEAD/src/UpdateIfChanged.js -------------------------------------------------------------------------------- /src/__tests__/UpdateIfChanged-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-update-if-changed/HEAD/src/__tests__/UpdateIfChanged-test.js -------------------------------------------------------------------------------- /src/__tests__/shouldComponentUpdate-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-update-if-changed/HEAD/src/__tests__/shouldComponentUpdate-test.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-update-if-changed/HEAD/src/index.js -------------------------------------------------------------------------------- /src/shouldComponentUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-update-if-changed/HEAD/src/shouldComponentUpdate.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-update-if-changed/HEAD/yarn.lock --------------------------------------------------------------------------------