We develop a software which needs to be supported by IE11. As multiple sources state, IE11 does not support async/await:
- https://caniuse.com/#feat=async-functions
- http://kangax.github.io/compat-table/es2016plus/
as well as several blog-articles.
We did now write a simple Angular 5 project which uses async/await and it is working fine in IE11. Can we safely assume that Angular uses some kind of polyfill to add support for this in IE11? I cannot find any source stating that Angular adds support for it.