@bitty/maybe
v0.2.0
Published
Maybe
Downloads
54
Readme
@bitty/maybe
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 useMaybe
.
License
Released under MIT License.