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