summaryrefslogtreecommitdiff
path: root/tests/testdata/run/import_meta/other.ts
blob: 5da6a49365920541afa32ef645fcccad5cdc54bf (plain)
1
2
3
4
5
6
7
console.log(
  import.meta.url.startsWith("http") ? "other remote" : "other",
  import.meta.url,
  import.meta.main,
  import.meta.filename,
  import.meta.dirname,
);