isNull.js 136 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 define(function () { // Is a given value equal to null? function isNull(obj) { return obj === null; } return isNull; });