diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2019-02-26 19:29:45 +0100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-02-26 13:29:45 -0500 |
commit | 5dfbbbb07a8f484dca27bbe0d7a3bafb0bdb91fd (patch) | |
tree | c4fc86d16e5747733e9d7a18652e791b9a255766 /tests/import_meta.ts | |
parent | 8dee6ea454deb05e69bfaed39a230950c9100c37 (diff) |
Add import.meta.main (#1835)
Diffstat (limited to 'tests/import_meta.ts')
-rw-r--r-- | tests/import_meta.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/import_meta.ts b/tests/import_meta.ts index 8f2712068..2f3bec9ed 100644 --- a/tests/import_meta.ts +++ b/tests/import_meta.ts @@ -1,3 +1,3 @@ -console.log("import_meta", import.meta.url); +console.log("import_meta", import.meta.url, import.meta.main); import "import_meta2.ts"; |