5.6.0 • Published 2 years ago

@ibbleinc-oss/typescript-monads v5.6.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

typescript-monads helps you write safer code by using abstractions over messy control flow and state.

Installation

You can use this library in the browser, node, or a bundler

Node or as a module

npm install typescript-monads

Browser

<head>
 <script src="https://unpkg.com/typescript-monads"></script>
 <!-- or use a specific version to avoid a http redirect --> 
 <script src="https://unpkg.com/typescript-monads@5.3.0/index.min.js"></script>
</head>
var someRemoteValue;
typescriptMonads.maybe(someRemoteValue).tapSome(console.log)

Example Usage

Maybe

TODO

List

TODO

Either

TODO

Reader

TODO

Result

TODO

State

TODO

Logger

TODO