I'd love an option to render functions in modern ES6 and [standardJS](https://standardjs.com) syntax. Eg. instead of ```js const echo = function (arg) { return arg; } ``` I'd want ```js const echo = arg => arg ``` standardJS is about small details like single vs double quotes, no semicolons, etc.