27 lines
785 B
JavaScript
27 lines
785 B
JavaScript
// Browser polyfills
|
|
|
|
/**
|
|
* Polyfill: fetch
|
|
* @what https://fetch.spec.whatwg.org/
|
|
* @why Because Apollo GraphQL client relies on fetch
|
|
* @browsers Internet Explorer 11
|
|
* @see https://caniuse.com/#feat=fetch
|
|
*/
|
|
import 'unfetch/polyfill/index';
|
|
|
|
/**
|
|
* Polyfill: FormData APIs
|
|
* @what delete(), get(), getAll(), has(), set(), entries(), keys(), values(),
|
|
* and support for for...of
|
|
* @why Because Apollo GraphQL client relies on fetch
|
|
* @browsers Internet Explorer 11, Edge < 18
|
|
* @see https://caniuse.com/#feat=mdn-api_formdata and subfeatures
|
|
*/
|
|
import 'formdata-polyfill';
|
|
|
|
import './polyfills/custom_event';
|
|
import './polyfills/element';
|
|
import './polyfills/event';
|
|
import './polyfills/nodelist';
|
|
import './polyfills/request_idle_callback';
|
|
import './polyfills/svg';
|