Skip to content

Instantly share code, notes, and snippets.

@emrekasg
Created April 2, 2020 15:13
Show Gist options
  • Save emrekasg/e58310a49736e909ca14e9681dd479b4 to your computer and use it in GitHub Desktop.
Save emrekasg/e58310a49736e909ca14e9681dd479b4 to your computer and use it in GitHub Desktop.
Ecmascript detector for Medium
function check() {
try { eval("var check = (x)=>x+1"); }
catch (e) { return false; }
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment