has-values
Install
$ npm install --save has-valuesUsage
var hasValue = require('has-values');
hasValue('a');
//=> true
hasValue('');
//=> false
hasValue(1);
//=> true
hasValue(0);
//=> false
hasValue({a: 'a'}});
//=> true
hasValue({});
hasValue({foo: undefined});
//=> false
hasValue({foo: null});
//=> true
hasValue(['a']);
//=> true
hasValue([]);
hasValue([[], []]);
hasValue([[[]]]);
//=> false
hasValue(['foo']);
hasValue([0]);
//=> true
hasValue(function(foo) {});
//=> true
hasValue(function() {});
//=> true
hasValue(true);
//=> true
hasValue(false);
//=> trueisEmpty
Release history
v1.0.0
About
Related projects
Contributing
Building docs
Running tests
Author
License
Last updated