From 95db3247485b2d1ed553c98e2231379e58a0ace2 Mon Sep 17 00:00:00 2001 From: Chris Knight Date: Sat, 12 Sep 2020 13:03:18 +0100 Subject: doc: improve Examples (#7428) --- docs/examples/testing_if_main.md | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 docs/examples/testing_if_main.md (limited to 'docs/examples/testing_if_main.md') diff --git a/docs/examples/testing_if_main.md b/docs/examples/testing_if_main.md deleted file mode 100644 index 67be70339..000000000 --- a/docs/examples/testing_if_main.md +++ /dev/null @@ -1,10 +0,0 @@ -## Testing if current file is the main program - -To test if the current script has been executed as the main input to the program -check `import.meta.main`. - -```ts -if (import.meta.main) { - console.log("main"); -} -``` -- cgit v1.2.3