isNull.js 109 B

123456789
  1. /**
  2. */
  3. function isNull(val){
  4. return val === null;
  5. }
  6. module.exports = isNull;