Skip to content

Instantly share code, notes, and snippets.

@ilyakam
Last active November 10, 2019 08:23
Show Gist options
  • Select an option

  • Save ilyakam/4fba5d7209f2d68b51b2008000cfa220 to your computer and use it in GitHub Desktop.

Select an option

Save ilyakam/4fba5d7209f2d68b51b2008000cfa220 to your computer and use it in GitHub Desktop.
Obfuscated Source Code Experiment - Private
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