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