Edits history of script submission #1029 for ' Generate QR Code (qrcode)'

  • deno
    import { qrcode } from "https://deno.land/x/[email protected]/mod.ts";
    
    export async function main(qr_url = "https://google.com") {
      const base64Image = await qrcode(`${qr_url}`); // data:image/gif;base64,...
    
      return { 'html': `<iframe style="width:100vh;height:100vh" src="${base64Image}" frameborder="0"></iframe>` }
    }

    Submitted by dinesh k e502 1024 days ago