From 64aed87de41ecc614f742f999989f32e42826ea2 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Tue, 1 Nov 2022 14:27:13 +0100 Subject: Fix Webpack modules that are not arrow funcs --- src/webpack/patchWebpack.ts | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/webpack') diff --git a/src/webpack/patchWebpack.ts b/src/webpack/patchWebpack.ts index b3cfd70..fa6767c 100644 --- a/src/webpack/patchWebpack.ts +++ b/src/webpack/patchWebpack.ts @@ -57,6 +57,11 @@ function patchPush() { // ever targets newer browsers, the minifier could potentially use this trick and // cause issues. let code: string = mod.toString().replaceAll("\n", ""); + // a very small minority of modules use function() instead of arrow functions, + // but, unnamed toplevel functions aren't valid. Thus, give those a name + if (code.startsWith("function(")) { + code = "function patchedModule" + code.slice("function".length); + } const originalMod = mod; const patchedBy = new Set(); -- cgit