UNPKG
unwrap-or
Version:
latest (1.0.8)
1.0.8
1.0.7
1.0.6
1.0.5
1.0.3
1.0.2-beta
1.0.1-beta
0.6.0-alpha
0.5.0-alpha
0.4.2-alpha
0.2.1-beta
0.1.4-beta
0.1.3-beta
0.1.2-beta
0.1.1-beta
A TypeScript implementation of Rust's Option and Result types.
codeberg.org/hnatiukr/unwrap-or
unwrap-or
/
lib
/
mod.ts
6 lines
(4 loc)
•
196 B
text/typescript
View Raw
1
2
3
4
5
6
export
{
None
,
Some
}
from
"./option/option.ts"
;
export
type
{
Option
}
from
"./option/option.ts"
;
export
{
Err
,
Ok
}
from
"./result/result.ts"
;
export
type
{
Result
}
from
"./result/result.ts"
;