├── .gitignore ├── LICENSE ├── README.md ├── bsconfig.json ├── example └── basic.re ├── package.json └── src ├── PromiseMonad.bs.js └── PromiseMonad.re /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitake/bs-promise-monad/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitake/bs-promise-monad/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitake/bs-promise-monad/HEAD/README.md -------------------------------------------------------------------------------- /bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitake/bs-promise-monad/HEAD/bsconfig.json -------------------------------------------------------------------------------- /example/basic.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitake/bs-promise-monad/HEAD/example/basic.re -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitake/bs-promise-monad/HEAD/package.json -------------------------------------------------------------------------------- /src/PromiseMonad.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitake/bs-promise-monad/HEAD/src/PromiseMonad.bs.js -------------------------------------------------------------------------------- /src/PromiseMonad.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitake/bs-promise-monad/HEAD/src/PromiseMonad.re --------------------------------------------------------------------------------