├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── examples ├── game.ts └── unsafeRun.ts ├── package.json ├── src ├── Distributes.ts ├── bikleisli-io.ts ├── bikleisli.ts ├── error.ts ├── index.ts ├── kleisli-io.test.ts ├── kleisli-io.ts ├── kleisli.test.ts ├── kleisli.ts └── unsafe.ts ├── tsconfig.json ├── tsconfig.production.json └── tslint.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/README.md -------------------------------------------------------------------------------- /examples/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/examples/game.ts -------------------------------------------------------------------------------- /examples/unsafeRun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/examples/unsafeRun.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/package.json -------------------------------------------------------------------------------- /src/Distributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/src/Distributes.ts -------------------------------------------------------------------------------- /src/bikleisli-io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/src/bikleisli-io.ts -------------------------------------------------------------------------------- /src/bikleisli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/src/bikleisli.ts -------------------------------------------------------------------------------- /src/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/src/error.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './kleisli-io'; 2 | -------------------------------------------------------------------------------- /src/kleisli-io.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/src/kleisli-io.test.ts -------------------------------------------------------------------------------- /src/kleisli-io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/src/kleisli-io.ts -------------------------------------------------------------------------------- /src/kleisli.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/src/kleisli.test.ts -------------------------------------------------------------------------------- /src/kleisli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/src/kleisli.ts -------------------------------------------------------------------------------- /src/unsafe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/src/unsafe.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/tsconfig.production.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YBogomolov/kleisli-ts/HEAD/tslint.json --------------------------------------------------------------------------------