├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── __tests__ └── sumtype.test.ts ├── jest.config.js ├── package.json ├── src ├── index.ts ├── sumtype.ts └── utils.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | *.log 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hojberg/sums-up/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hojberg/sums-up/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/sumtype.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hojberg/sums-up/HEAD/__tests__/sumtype.test.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hojberg/sums-up/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hojberg/sums-up/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hojberg/sums-up/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/sumtype.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hojberg/sums-up/HEAD/src/sumtype.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hojberg/sums-up/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hojberg/sums-up/HEAD/tsconfig.json --------------------------------------------------------------------------------