mirror of
https://github.com/denoland/deno.git
synced 2024-12-12 02:27:46 -05:00
8 lines
177 B
JavaScript
8 lines
177 B
JavaScript
|
if (typeof self !== "undefined") {
|
||
|
throw new Error("self is defined");
|
||
|
}
|
||
|
|
||
|
if (typeof WorkerGlobalScope !== "undefined") {
|
||
|
throw new Error("WorkerGlobalScope is defined");
|
||
|
}
|