Skip to content

Instantly share code, notes, and snippets.

@jeankassio
Created January 30, 2024 20:39
Show Gist options
  • Save jeankassio/7e30e98d8af5ba8d6b326bacfe5c9382 to your computer and use it in GitHub Desktop.
Save jeankassio/7e30e98d8af5ba8d6b326bacfe5c9382 to your computer and use it in GitHub Desktop.
Check support to ES6
function isES6Supported() {
try {
new Function("(a = 0) => a"); // Testa a existência de arrow functions
return true;
} catch (exception) {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment