is-null-or-undefined.js 209 B

12345
  1. // we can't use just `it == null` since of `document.all` special case
  2. // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
  3. module.exports = function (it) {
  4. return it === null || it === undefined;
  5. };