exists
node exists function. plain and simple.
exists(thing)
returns true for anything other than null or undefined
var exists = ; ; // false; // false; // true; // true; // true; // true
exists.allExist(thing)
returns true if all arguments are not null or undefined
var allExist = allExist; ; // false; // true ; // false
License
MIT