UNPKG
@nathanfaucett/is_null
Version:
latest (0.0.1)
0.0.1
checks if value is null
github.com/nathanfaucett/is_null
nathanfaucett/is_null
@nathanfaucett/is_null
/
src
/
index.js
7 lines
(4 loc)
•
81 B
JavaScript
View Raw
1
2
3
4
5
6
7
module
.
exports
= isNull; function
isNull
(value)
{
return
value ===
null
; }