json stringify

function stringifyJsonWithIndentation(obj) {
  return JSON.stringify(obj, null, 2)
}
BA