Convert JavaScript Object to JSON String
One script reply has been approved by the moderators Verified
Created by daltonarrapsder 1352 days ago Picked 12 times
Submitted by jaller94 Deno
Verified 287 days ago
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