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