From 0bf4fe1d599991a9b4bde8f97d5efb504ea5473b Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Sat, 18 Apr 2026 12:26:34 +0900 Subject: [PATCH] Style: normalize function formatting in core-js Adjust whitespace, indentation and add missing semicolon in the returned function inside NullProtoObjectViaSc64bit. This is a purely stylistic change (spacing around `function` and consistent indentation) and does not alter runtime behavior. --- app/assets/js/core-js-3.49.0.wsh.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 9e3793b..e715ac3 100644 --- a/app/assets/js/core-js-3.49.0.wsh.js +++ b/app/assets/js/core-js-3.49.0.wsh.js @@ -2421,9 +2421,9 @@ var NullProtoObjectViaSc64bit = function () { // If all attempts to retrieve a new object from an external instance fail, // the existing object is returned. // This prevents errors during the key deletion process using enumBugKeys afterward. - return function() { - return {}; - } + return function () { + return {}; + }; } }