isNull.js 109 Bytes Raw Blame History Permalink 1 2 3 4 5 6 // Is a given value equal to null? function isNull(obj) { return obj === null; } module.exports = isNull;