mirror of
https://github.com/mastodon/mastodon.git
synced 2025-02-06 23:15:07 +00:00
10 lines
243 B
JavaScript
10 lines
243 B
JavaScript
import main from '../mastodon/main';
|
|
|
|
if (!window.Intl || !Object.assign || !Number.isNaN ||
|
|
!window.Symbol || !Array.prototype.includes) {
|
|
// load polyfills dynamically
|
|
import('../mastodon/polyfills').then(main);
|
|
} else {
|
|
main();
|
|
}
|