Skip to content

prettyJSONObject

Formats a JSON object with indentation for easy readability.

Usage

ts
import { prettyJSONObject } from 'rattail'

const jsonObject = { key: 'value', nested: { key: 'nestedValue' } }
const pretty = prettyJSONObject(jsonObject)
console.log(pretty)
/*
{
  "key": "value",
  "nested": {
    "key": "nestedValue"
  }
}
*/

Arguments

ArgTypeDefaults
jsonObjectobject

Return

Type
string