2017-05-11 11:26:06 +02:00
|
|
|
import main from '../mastodon/main';
|
|
|
|
|
|
|
|
if (!window.Intl || !Object.assign || !Number.isNaN ||
|
|
|
|
!window.Symbol || !Array.prototype.includes) {
|
|
|
|
// load polyfills dynamically
|
2017-05-17 02:59:43 +02:00
|
|
|
import('../mastodon/polyfills').then(main).catch(e => {
|
2017-05-20 17:31:47 +02:00
|
|
|
console.error(e); // eslint-disable-line no-console
|
2017-05-17 02:59:43 +02:00
|
|
|
});
|
2017-05-11 11:26:06 +02:00
|
|
|
} else {
|
|
|
|
main();
|
2017-05-03 02:04:16 +02:00
|
|
|
}
|