Skip to content

Instantly share code, notes, and snippets.

@abcdeepakr
Created April 6, 2023 10:10
Show Gist options
  • Save abcdeepakr/a9fa83daee69f6abd784875c60984a63 to your computer and use it in GitHub Desktop.
Save abcdeepakr/a9fa83daee69f6abd784875c60984a63 to your computer and use it in GitHub Desktop.
download base64 pdf
const downloadLink = document.createElement("a");
downloadLink.href = invoiceResponse.b64[0];
downloadLink.download = "File_name";
downloadLink.click();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment