beautify-web/js-beautify: Beautifier for javascript

PHOTO EMBED

Wed May 24 2023 08:32:46 GMT+0000 (Coordinated Universal Time)

Saved by @LingoBotics

const options = { indent_size: 2, space_in_empty_paren: true }

const dataObj = {completed: false,id: 1,title: "delectus aut autem",userId: 1,}

const dataJson = JSON.stringify(dataObj)

js_beautify(dataJson, options)

/* OUTPUT
{
  "completed": false,
  "id": 1,
  "title": "delectus aut autem",
  "userId": 1,
}
*/
content_copyCOPY

https://github.com/beautify-web/js-beautify