document-all.js 269 B

123456789
  1. var documentAll = typeof document == 'object' && document.all;
  2. // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
  3. var IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined;
  4. module.exports = {
  5. all: documentAll,
  6. IS_HTMLDDA: IS_HTMLDDA
  7. };