I'm noticing with webpack v3 there's a lot of this kind of generated code:
Object(__WEBPACK_IMPORTED_MODULE_3__module_resolve_filename_js__["a" /* default */])(foo)
What's the reason for wrapping all references with Object() and can this be disabled or optimized away to a single wrap?
I'm noticing with webpack v3 there's a lot of this kind of generated code:
What's the reason for wrapping all references with
Object()and can this be disabled or optimized away to a single wrap?