@bitty/maybe
Version:
43 lines (28 loc) • 1.3 kB
Markdown
# `@bitty/maybe`
[](https://bundlephobia.com/result?p=@bitty/maybe)
[](https://bundlephobia.com/result?p=@bitty/maybe)
## Installation
This library is published in the NPM registry and can be installed using any compatible package manager.
```sh
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.
```html
<!-- 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`](./examples/getLanguage/getLanguage.ts) 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](./LICENSE).