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