is-value
v1.0.1
Published
Check if a value exists.
Downloads
6
Readme
is-value
Check if a value exists.
Installation
npm install is-value
Usage
var isValue = require('is-value')
isValue(true) //=> true
isValue(false) //=> true
isValue(null) //=> false
isValue(undefined) //=> false
API
isValue(value) -> Boolean
Check if a value exists.