@bitty/maybe

Maybe

Usage no npm install needed!

<script type="module">
  import bittyMaybe from 'https://cdn.skypack.dev/@bitty/maybe';
</script>

README

@bitty/maybe

Library minified size Library minified + gzipped size

Installation

This library is published in the NPM registry and can be installed using any compatible package manager.

npm install @bitty/maybe --save

# For Yarn, use the command below.
yarn add @bitty/maybe

Installation from CDN

This module has a UMD bundle available through JSDelivr and Unpkg CDNs.

<!-- For UNPKG use the code below. -->
<script src="https://unpkg.com/@bitty/maybe"></script>

<!-- For JSDelivr use the code below. -->
<script src="https://cdn.jsdelivr.net/npm/@bitty/maybe"></script>

<script>
  // UMD module is exposed through the "Maybe" global object.
  Maybe.fromFalsy(document.querySelector('input#id'))
    .chain((el) => Maybe.fromFalsy(el.value?.trim()))
    .map(console.log);
</script>

Examples

  • getLanguage is a function that resolves language in application. Its a pretty common case and it was implemented in the way I think we should use Maybe.

License

Released under MIT License.