When i define a module which just contains an IIFE like: ``` js (function(console) { })(global.console); ``` webpack doesn't recognize the usage of the `global` and doesn't inject the node polyfill into the scope of the the module.
When i define a module which just contains an IIFE like:
webpack doesn't recognize the usage of the
globaland doesn't inject the node polyfill into the scopeof the the module.