├── .flowconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── .prettierrc.yml ├── .vim └── coc-settings.json ├── LICENSE ├── README.md ├── __tests__ └── index.js ├── babel.config.js ├── flow-typed └── npm │ └── jest_v24.x.x.js ├── package.json ├── src └── index.js └── yarn.lock /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjagh/use-custom-compare-effect/HEAD/.flowconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjagh/use-custom-compare-effect/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjagh/use-custom-compare-effect/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjagh/use-custom-compare-effect/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjagh/use-custom-compare-effect/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /.vim/coc-settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "javascript.validate.enable": false 3 | } 4 | 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjagh/use-custom-compare-effect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjagh/use-custom-compare-effect/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjagh/use-custom-compare-effect/HEAD/__tests__/index.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjagh/use-custom-compare-effect/HEAD/babel.config.js -------------------------------------------------------------------------------- /flow-typed/npm/jest_v24.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjagh/use-custom-compare-effect/HEAD/flow-typed/npm/jest_v24.x.x.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjagh/use-custom-compare-effect/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjagh/use-custom-compare-effect/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjagh/use-custom-compare-effect/HEAD/yarn.lock --------------------------------------------------------------------------------