compatibility.js 233 B

12345678910
  1. require('babel-polyfill')
  2. // =======================================
  3. // Fetch polyfill
  4. // =======================================
  5. // Requirement: Safari 9 and below, IE 11 and below
  6. if (!window.fetch) {
  7. require('whatwg-fetch')
  8. }