Sometimes I'd like to know if the code I'm writing is ES5 compliant/safe or not.
Example: this would fail because of the arrow function.
() => "something";
I know Babel
could take care of this. But sometimes I would like to test some cases.
Is there a place where I could do this?