From 6423d941aeee15c0027305aae54a31953a3f5292 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Sat, 18 Apr 2026 17:19:34 +0900 Subject: [PATCH] Add missing semicolon to NullProtoObjectViaSc64bit Terminate the function expression assigned to NullProtoObjectViaSc64bit with a semicolon (replace `}` with `};`) in app/assets/js/core-js-3.49.0.wsh.js. This ensures the statement is properly closed and prevents potential parsing/concatenation issues with following code. --- app/assets/js/core-js-3.49.0.wsh.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/js/core-js-3.49.0.wsh.js b/app/assets/js/core-js-3.49.0.wsh.js index e715ac3..3c39c22 100644 --- a/app/assets/js/core-js-3.49.0.wsh.js +++ b/app/assets/js/core-js-3.49.0.wsh.js @@ -2425,7 +2425,7 @@ var NullProtoObjectViaSc64bit = function () { return {}; }; } -} +}; // Create object with fake `null` prototype: use iframe Object with cleared prototype var NullProtoObjectViaIFrame = function () {