├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .npmignore ├── .npmrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GOVERNANCE.md ├── LICENSE ├── README.md ├── circle.yml ├── index.d.ts ├── jsdoc.json ├── package.json ├── scripts └── deploy-ghpages.sh ├── src ├── FlutureTMonetEither │ ├── index.js │ └── utils.js ├── MonetEitherT │ └── index.js ├── index.js └── utils.js ├── test ├── .eslintrc ├── FlutureTMonetEither │ └── index.js ├── MonetEitherT │ └── index.js ├── mocha-bootstrap.js ├── mocha-multi.json ├── mocha.opts └── shared │ └── Monad.js └── tonicExample.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /.tmp 2 | /.nyc_output 3 | /docs 4 | /lib 5 | /tonicExample.js 6 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | core.autocrlf=false 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-prefix="=" 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/circle.yml -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/index.d.ts -------------------------------------------------------------------------------- /jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/jsdoc.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/package.json -------------------------------------------------------------------------------- /scripts/deploy-ghpages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/scripts/deploy-ghpages.sh -------------------------------------------------------------------------------- /src/FlutureTMonetEither/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/src/FlutureTMonetEither/index.js -------------------------------------------------------------------------------- /src/FlutureTMonetEither/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/src/FlutureTMonetEither/utils.js -------------------------------------------------------------------------------- /src/MonetEitherT/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/src/MonetEitherT/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/src/utils.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/FlutureTMonetEither/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/test/FlutureTMonetEither/index.js -------------------------------------------------------------------------------- /test/MonetEitherT/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/test/MonetEitherT/index.js -------------------------------------------------------------------------------- /test/mocha-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/test/mocha-bootstrap.js -------------------------------------------------------------------------------- /test/mocha-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/test/mocha-multi.json -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/shared/Monad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/test/shared/Monad.js -------------------------------------------------------------------------------- /tonicExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/char0n/monad-t/HEAD/tonicExample.js --------------------------------------------------------------------------------