Skip to content
View michalszorad's full-sized avatar
💻
Coding React Apps
💻
Coding React Apps

Block or report michalszorad

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse

Pinned Loading

  1. react-social-login-buttons react-social-login-buttons Public

    Social login buttons for React

    TypeScript 216 40

  2. create-typeguard create-typeguard Public

    Simple package for creating safe type guards for TypeScript

    TypeScript 14 1

  3. typeguards.recapitulation.ts typeguards.recapitulation.ts
    1
    // Parser is a function which takes unknown and returns T or null 
    2
    type Parser<T> = (val: unknown) => T | null;
    3
    
                  
    4
    // createTypeGuard is a function which takes a parser and returns a new function
    5
    // The returned function is a safe type guard for T