mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
* Implement `import.meta.main` * Update main-test-1.js * Update fs.test.ts --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
6 lines
72 B
JavaScript
6 lines
72 B
JavaScript
if (import.meta.main) {
|
|
process.exit(1);
|
|
}
|
|
|
|
export const pass = true;
|