0.0.3 • Published 9 months ago

evrico v0.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
9 months ago

Evrico

Option and Result types for JavaScript and TypeScript developers.

Examples

import { O, pipe } from "evrico"

pipe(
    O.some(5),
    O.map(x => x * 2),
    console.log // Some(10)
) 

pipe(
    O.none,
    O.map(x => x * 2),
    console.log // None
) 

Inspired by fp-ts

0.0.3

9 months ago

0.0.2

9 months ago

0.0.1

9 months ago