mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:30 -06:00
11 lines
233 B
JavaScript
11 lines
233 B
JavaScript
require('babel-polyfill')
|
|
|
|
// =======================================
|
|
// Fetch polyfill
|
|
// =======================================
|
|
// Requirement: Safari 9 and below, IE 11 and below
|
|
|
|
if (!window.fetch) {
|
|
require('whatwg-fetch')
|
|
}
|