Skip to content
View albert-schilling's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report albert-schilling

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

  1. Retrieve the mime type via the types... Retrieve the mime type via the types magic number from a base 64 string
    1
    export async function getMimeType(base64String: string): Promise<string> {
    2
        // convert to data url
    3
        const url = base64String.startsWith('data') ? base64String : `data:undefined;base64,${base64String}`;
    4
        const buffer = await urlToArrayBuffer(url);
    5
        const uint = new Uint8Array(buffer);
  2. personal-website personal-website Public

    My personal website to present myself as frontend developer

    HTML 2 1