mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
8 lines
227 B
TypeScript
8 lines
227 B
TypeScript
|
if (window.location.toString() == import.meta.url) {
|
||
|
console.log("main");
|
||
|
} else {
|
||
|
console.log("import.meta.url", import.meta.url);
|
||
|
console.log("window.location", window.location.toString());
|
||
|
throw Error("not main");
|
||
|
}
|