is-present
v1.0.0
Published
Check whether a value is nonblank.
Downloads
50,469
Maintainers
Readme
is-present
Check whether a value is nonblank.
Installation
npm i --save is-present
Usage
var isPresent = require('is-present');
isPresent([]); // => false
isPresent({}); // => false
isPresent(0); // => false
isPresent(function(){}); // => false
isPresent(null); // => false
isPresent(undefined); // => false
isPresent(''); // => false
isPresent(' '); // => false
isPresent('\r\t\n '); // => false
isPresent(['a', 'b']); // => true
isPresent({ a: 'b' }); // => true
isPresent('string'); // => true
isPresent(42); // => true
isPresent(function(a,b){}); // => true
Acknowledgements
A negation for is-blank which extends is-empty and is-whitespace.
License
MIT
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Crafted with <3 by John Otander (@4lpine).