Edits history of script submission #22422 for ' Pretty Print JSON (helper)'

  • bunnative
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    
    export async function main(value: object | string, indentation = 2) {
      if (typeof value === "string") {
        value = JSON.parse(value);
      }
      return JSON.stringify(value, null, indentation);
    }
    

    Submitted by hugo989 7 days ago