Edits history of script submission #102 for ' Convert JavaScript Object to JSON String (helper)'

  • deno
    // 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 398 days ago

  • deno
    // 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 1031 days ago

  • deno
    // 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 1398 days ago