// Set indented to true for pretty JSON.
export async function main(value: object, indented = false) {
  return JSON.stringify(value, null, indented ? 2 : null);
}
 Submitted by hugo697 181 days ago
// Set indented to true for pretty JSON.
export async function main(value: object, indented = false) {
  return JSON.stringify(value, null, indented ? 2 : null);
}
 Submitted by admin 814 days ago
// Set indented to true for pretty JSON.
export async function main(value: object, indented = false) {
	return JSON.stringify(value, null, indented ? 2 : null);
} Submitted by jaller94 1181 days ago