UNPKG
@typed/io
Version:
latest (1.2.0)
1.2.0
1.1.2
1.1.1
1.1.0
1.0.0
Runtime IO type system
@typed/io
/
esm
/
types
/
Null.js
6 lines
•
242 B
JavaScript
View Raw
1
2
3
4
5
6
import
*
as
G
from
'../guard'
;
import
{
Type
}
from
'./Type'
;
import
{ union }
from
'./Union'
;
export
const
Null
=
Type
.
fromGuard
(G.
Null
,
`Null`
,
`null`
);
export
const
nullable
= (
type
) =>
union
([
Null
,
type
]);
//# sourceMappingURL=Null.js.map