Open mesqueeb opened 4 years ago
I'd love an option to render functions in modern ES6 and standardJS syntax.
Eg. instead of
const echo = function (arg) { return arg; }
I'd want
const echo = arg => arg
standardJS is about small details like single vs double quotes, no semicolons, etc.
I don't think it's serialize-javascript's role to rewrite the syntax. You would be better to pass your source code written in the syntax you want to serialize?
I'd love an option to render functions in modern ES6 and standardJS syntax.
Eg. instead of
I'd want
standardJS is about small details like single vs double quotes, no semicolons, etc.