├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── __tests__ └── composeRefs.ts ├── composeRefs.ts ├── jest.config.js ├── package.json ├── stryker.conf.js ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | dist/ 3 | node_modules/ 4 | reports/ 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seznam/compose-react-refs/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seznam/compose-react-refs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seznam/compose-react-refs/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/composeRefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seznam/compose-react-refs/HEAD/__tests__/composeRefs.ts -------------------------------------------------------------------------------- /composeRefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seznam/compose-react-refs/HEAD/composeRefs.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seznam/compose-react-refs/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seznam/compose-react-refs/HEAD/package.json -------------------------------------------------------------------------------- /stryker.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seznam/compose-react-refs/HEAD/stryker.conf.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seznam/compose-react-refs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seznam/compose-react-refs/HEAD/tslint.json --------------------------------------------------------------------------------