Edits history of script submission #22427 for ' Send any HTTP Request (http)'

  • bunnative
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    
    export async function main(url: string, request_type: string) {
      const req = new Request(url, {
        method: request_type,
      });
      let resp = await fetch(req);
    
      return { response: await resp.text() };
    }
    

    Submitted by hugo989 14 days ago