Skip to content
View Enva2712's full-sized avatar

Organizations

@Photon-Vault @sigfreed-explore

Block or report Enva2712

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. dotfiles dotfiles Public

    Config files for your soul

    Shell 1

  2. tokenator tokenator Public

    deno hmac

    TypeScript 1

  3. eratosthenes eratosthenes Public

    primes yo

    Rust

  4. trout.ts trout.ts
    1
    // Trie ROUTer
    2
    
                  
    3
    export type RouteParams<R extends string = ""> = R extends `/${infer S}/${infer Rest}` ? SegParams<S> & RouteParams<`/${Rest}`>
    4
      : R extends `/${infer S}` ? SegParams<S>
    5
      : ({ [k: string]: string | string[] });