(breaking change) remove V86Starter (use V86 instead)

This commit is contained in:
Fabian 2024-08-13 15:27:43 +02:00
parent 287c525708
commit 0a00f53a41

View file

@ -1408,17 +1408,14 @@ FileNotFoundError.prototype = Error.prototype;
// Closure Compiler's way of exporting
if(typeof module !== "undefined" && typeof module.exports !== "undefined")
{
module.exports["V86Starter"] = V86;
module.exports["V86"] = V86;
}
else if(typeof window !== "undefined")
{
window["V86Starter"] = V86;
window["V86"] = V86;
}
else if(typeof importScripts === "function")
{
// web worker
self["V86Starter"] = V86;
self["V86"] = V86;
}