Skip to content

Instantly share code, notes, and snippets.

@Zirak
Created June 12, 2015 16:21
Show Gist options
  • Select an option

  • Save Zirak/d8f40d8101eecba36dea to your computer and use it in GitHub Desktop.

Select an option

Save Zirak/d8f40d8101eecba36dea to your computer and use it in GitHub Desktop.
function shouldParenthesize (code) {
try {
Function(code);
}
catch (e) {
if (e instanceof SyntaxError) {
try {
Function('(' + code + ')');
return true;
}
catch (_) {}
}
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment