Given a value, returns true if null or undefiend
module.exports = function(obj) { return obj === null || obj === undefined; };