Jsome icon indicating copy to clipboard operation
Jsome copied to clipboard

Display array items in lines

Open rottmann opened this issue 4 years ago • 0 comments

Example: [1, '313233343536373839303132333435367b94679e5264bf84069c68643307ef80c1ebf343565158', 3]

Output is:

[1, "313233343536373839303132333435367b94679e5264bf84069c68643307ef80c1ebf343565158", 3]

Output for better readability should be (like object output):

[
  1,
  "313233343536373839303132333435367b94679e5264bf84069c68643307ef80c1ebf343565158",
  3
]

If you had an array of objects it is displayed in lines.

rottmann avatar Oct 29 '20 11:10 rottmann