Skip to content

Instantly share code, notes, and snippets.

@cauefcr
Created December 4, 2020 17:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cauefcr/15a047ca912482893536bcbc949e73d1 to your computer and use it in GitHub Desktop.
Save cauefcr/15a047ca912482893536bcbc949e73d1 to your computer and use it in GitHub Desktop.
javascript quine
const main = () => {
var toSource = require("tosource-polyfill");
console.log(toSource(main)+";\nmain();");
};
main();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment