Last Updated: February 25, 2016
·
311
· treasonx

Copy Data In Chrome

I use this snippet when trying to debug problems in chrome. Or just send example data structures to other devs.

When you are stopped in the debugger open your console and type.

copy(JSON.stringify(data, null, 2))

Now go to your favorite editor and paste!