UNPKG
is-present
Version:
latest (1.0.0)
1.0.0
0.0.1
Check whether a value is nonblank.
github.com/johnotander/is-present
johnotander/is-present
is-present
/
index.js
6 lines
(4 loc)
•
112 B
JavaScript
View Raw
1
2
3
4
5
6
var
isBlank =
require
(
'is-blank'
); module.exports =
function
isPresent
(
object
)
{
return
!
isBlank
(
object
); };