ES6 Support?

Hi, can I ask if Fuse supports ES6 currently?
Thanks

Copied from another forum post:

If you are exporting to Android, you are using V8 and that will give you a lot of the ES6 syntax. If you export to iOS we have to use JavaScriptCore which is far from done with adding ES6 features. So you need to use a transpiler like babel in that case.

So basically if you don’t care about older iOS versions, you can write ES6 today. If that is not an option, look into using transpilers. There are several posts on the forum that should get you started in the right direction.

Ok, great. Not too bothered about older iOS versions so that will be fine.
Thanks.