Created
January 10, 2026 18:34
-
-
Save maxsei/3d6c98b9e2573f34ded121dd6fa1030e 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
| console.log`got otp from stdin: ${otp}`); // ❌ Wrong | |
| console.log(`got otp from stdin: ${otp}`); // ✅ Correct | |
| throw new Error`failed...`); // ❌ Wrong | |
| throw new Error(`failed...`); // ✅ Correct | |
| await Bun.write`${runDirPath}/api-response.json`, ...); // ❌ Wrong | |
| await Bun.write(`${runDirPath}/api-response.json`, ...); // ✅ Correct |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment