The file polyfills.ts
includes a commented out line that states:
/** IE10 and IE11 requires the following for the Reflect API. */
// import 'core-js/es6/reflect';
Can you explain what the 'Reflect API' is? Why is it needed for Internet Explorer (IE) and is this import statement essential when running an Angular
application in IE
? Interestingly, I couldn't find much information on Google or StackOverflow regarding this topic.