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.
This commit is contained in:
Namhyeon, Go 2026-04-18 17:19:34 +09:00
parent ada9a97e9b
commit 6423d941ae

View File

@ -2425,7 +2425,7 @@ var NullProtoObjectViaSc64bit = function () {
return {};
};
}
}
};
// Create object with fake `null` prototype: use iframe Object with cleared prototype
var NullProtoObjectViaIFrame = function () {