bundle.js 530 B

123456789101112131415
  1. require('es6-promise/auto')
  2. require('whatwg-fetch')
  3. require('abortcontroller-polyfill/dist/polyfill-patch-fetch')
  4. // Order matters: AbortController needs fetch which needs Promise.
  5. const mathLog2 = require('math-log2')
  6. require('md-gum-polyfill')
  7. const ResizeObserver = require('resize-observer-polyfill')
  8. require('symbol-es6')
  9. require('url-polyfill')
  10. if (typeof Math.log2 !== 'function') Math.log2 = mathLog2
  11. if (typeof window.ResizeObserver !== 'function') window.ResizeObserver = ResizeObserver
  12. module.exports = require('.')