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

  • bunnative
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    
    // 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 hugo989 6 days ago