1
// Set indented to true for pretty JSON.
2
export async function main(value: object, indented = false) {
3
return JSON.stringify(value, null, indented ? 2 : null);
4
}
5