Skip to content
View gabrielvie's full-sized avatar
👨‍💻
👨‍💻

Block or report gabrielvie

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. ExpensesApp ExpensesApp Public

    Dart

  2. How to implement a download file wit... How to implement a download file with base64 on IE/EDGE
    1
    if (window.navigator && window.navigator.msSaveOrOpenBlob) {
    2
      const data = "<base64 string/>"
    3
      const fileName = 'file.pdf'
    4
      const byteCharacters = atob(data)
    5