One of the (many) things that the CoreJS polyfills provide is a globalThis polyfill, which is needed on legacy Edge. However, the current polyfill test for loading CoreJS is the 'noModule' in HTMLScriptElement.prototype test, which unfortunately passes for legacy Edge (e.g. Edge 18).
Would you consider adding the globalThis test to loading the CoreJS polyfill (e.g. 'globalThis' in window) so that legacy Edge gets that polyfill?
One of the (many) things that the CoreJS polyfills provide is a
globalThis
polyfill, which is needed on legacy Edge. However, the current polyfill test for loading CoreJS is the'noModule' in HTMLScriptElement.prototype
test, which unfortunately passes for legacy Edge (e.g. Edge 18).Would you consider adding the
globalThis
test to loading the CoreJS polyfill (e.g.'globalThis' in window
) so that legacy Edge gets that polyfill?