📄 isNull.js
/home/palash/git/site/node_modules/underscore/amd/isNull.js
Language: js • Lines: 10
define(function () {

  // Is a given value equal to null?
  function isNull(obj) {
    return obj === null;
  }

  return isNull;

});