isNull.js

export default function isNull(obj) {
  return obj === null;
}