Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. try {
  2. function *(){}
  3. } catch(err) {
  4. console.log("No generators");
  5. }
  6.  
  7. try {
  8. eval("(function *(){})()");
  9. } catch(err) {
  10. console.log(err);
  11. console.log("No generators");
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement