1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/prettify.R
\name{prettify, minify}
\alias{prettify, minify}
\alias{prettify}
\alias{minify}
\title{Prettify or minify a JSON string}
\usage{
prettify(txt, indent = 4)
minify(txt)
}
\arguments{
\item{txt}{JSON string}
\item{indent}{number of spaces to indent}
}
\description{
Prettify adds indentation to a JSON string; minify removes all indentation/whitespace.
}
\examples{
myjson <- toJSON(cars)
cat(myjson)
prettify(myjson)
minify(myjson)
}
|