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.
This commit is contained in:
Namhyeon, Go 2026-04-18 12:26:34 +09:00
parent 12f6088ba0
commit 0bf4fe1d59

View File

@ -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 {};
};
}
}