UNPKG
moonads
Version:
latest (0.0.2)
0.0.2
0.0.1
Generic Monads in Typescript
github.com/SethDavenport/moonads
SethDavenport/moonads
moonads
/
src
/
utils
/
is-nil.ts
3 lines
(2 loc)
•
87 B
text/typescript
View Raw
1
2
3
export
const
isNil = (
value
:
any
):
boolean
=>
value ===
null
|| value ===
undefined
;