serialize-javascript icon indicating copy to clipboard operation
serialize-javascript copied to clipboard

extract same refs of object

Open harvey-woo opened this issue 6 years ago • 0 comments

It's very nice if support extracting same refs of object, for example

var obj = {}
serialize({b: obj, c: obj})

get

(function() { var a = {}; return {"b": a, "c": a} })()

harvey-woo avatar Apr 24 '19 06:04 harvey-woo