//native export async function main(value: object | string, indentation = 2) { if (typeof value === "string") { value = JSON.parse(value); } return JSON.stringify(value, null, indentation); }
Submitted by hugo989 7 days ago