├── .github └── main.workflow ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── src └── index.ts ├── test ├── index.test.ts └── tsconfig.json └── tsconfig.json /.github/main.workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbranch/merge-props/HEAD/.github/main.workflow -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbranch/merge-props/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbranch/merge-props/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbranch/merge-props/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbranch/merge-props/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbranch/merge-props/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbranch/merge-props/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbranch/merge-props/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbranch/merge-props/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbranch/merge-props/HEAD/tsconfig.json --------------------------------------------------------------------------------