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