Last active
October 10, 2025 09:59
-
-
Save flanger001/8632cd3392d31e30bc0f372418d0a683 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import fs from "node:fs"; | |
| function main() { | |
| const file = fs.readFileSync(import.meta.filename, { encoding: "utf-8" }); | |
| process.stdout.write(file); | |
| } | |
| main(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment