yahoo / serialize-javascript

Serialize JavaScript to a superset of JSON that includes regular expressions and functions.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ES6 & standardJS syntax

mesqueeb opened this issue · comments

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?