-
-
Save ilyakam/4fba5d7209f2d68b51b2008000cfa220 to your computer and use it in GitHub Desktop.
Obfuscated Source Code Experiment - Private
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
| const secretFunction = (req, res) => { | |
| const date = new Date(); | |
| const greeting = 'Hello world'; | |
| const response = `${greeting}! The current time is ${date.toLocaleTimeString()} UTC`; | |
| res.end(response); | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment