1
export async function main(value: object | string, indentation = 2) {
2
if (typeof value === "string") {
3
value = JSON.parse(value);
4
}
5
return JSON.stringify(value, null, indentation);
6
7