22 lines
279 B
Go
22 lines
279 B
Go
|
package jsonpp
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"encoding/json"
|
||
|
)
|
||
|
|
||
|
const indent string = "\t"
|
||
|
|
||
|
func jsonPrettyPrint(dst *bytes.Buffer, src []byte) error {
|
||
|
if nil == dst {
|
||
|
return errInternalError
|
||
|
}
|
||
|
|
||
|
err := json.Indent(dst, src, "", indent)
|
||
|
if nil != err {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|