Today, a customer showed me, that my Meteor application does not work in her browsers. She used Firefox 60.0 and Safari 12.0.
The reason was the missing support for Object.fromEntries. After updating Firefox she could use the application. The App Store does not provide an update for Safari, so this browser cannot be used for the application.
Until now, I’ve never had any problem using modern JavaScript features within Meteor. Meteor took care of it and provided the necessary transpilations and polyfills.
As it is an internally used application, I could leave it as it is. But for a customer facing application, I’d see this as a big issue.
Should this be considered as bug? Then, I’d create an issue on Github.
Is there a list of supported browsers? This list from MeteorPedia would cover the versions specified above.
Do I have to change some Babel related settings to cover these browser versions? How should I do that?
The application uses Meteor 1.8.1. It runs on the server as built with meteor build
Thanks for your advice!