function n(n) { return n != null; } function u(u, r) { if (u == null || n(u)) { return true; } return false; } module.exports = u;