summaryrefslogtreecommitdiff
path: root/docs/examples/testing_if_main.md
blob: 67be70339cbd0a33901b8a23a4275ab0c68e47e2 (plain)
1
2
3
4
5
6
7
8
9
10
## 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");
}
```