📄 isNull.js
/home/palash/git/site/node_modules/underscore/cjs/isNull.js
Language: js • Lines: 6
// Is a given value equal to null?
function isNull(obj) {
  return obj === null;
}

module.exports = isNull;