Closed SimonSiefke closed 3 months ago
Helps with https://github.com/microsoft/vscode/issues/160416.
This PR changes the _amdLoaderGlobal to fall back to globalThis when this is undefined. This would be useful for using the AMD loader with ESM, because this at the top level of an ESM module is undefined.
_amdLoaderGlobal
globalThis
this
Thank you!
Helps with https://github.com/microsoft/vscode/issues/160416.
This PR changes the
_amdLoaderGlobal
to fall back toglobalThis
whenthis
is undefined. This would be useful for using the AMD loader with ESM, becausethis
at the top level of an ESM module is undefined.