2e214de1943ad057810cbc7eb29322d80b489d0f613441fc78472a9b846a415038f220f34b5938c7fa963e5a074e41804e5e3317e36e7ffab7e4c47b4cab5f 437 B

12345678
  1. 'use strict';
  2. // in old WebKit versions, `element.classList` is not an instance of global `DOMTokenList`
  3. var documentCreateElement = require('../internals/document-create-element');
  4. var classList = documentCreateElement('span').classList;
  5. var DOMTokenListPrototype = classList && classList.constructor && classList.constructor.prototype;
  6. module.exports = DOMTokenListPrototype === Object.prototype ? undefined : DOMTokenListPrototype;