Skip to content

Instantly share code, notes, and snippets.

@haocong
Created May 30, 2018 07:33
Show Gist options
  • Save haocong/f6f5782a7fa41e4471aad7ec6d9c0bf8 to your computer and use it in GitHub Desktop.
Save haocong/f6f5782a7fa41e4471aad7ec6d9c0bf8 to your computer and use it in GitHub Desktop.
supportsES6
var supportsES6 = function() {
try {
new Function("(a = 0) => a");
return true;
}
catch (err) {
return false;
}
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment