0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/tests/if_main.ts
2019-02-18 23:04:59 -05:00

7 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");
}