Skip to content
View T1xx1's full-sized avatar

Organizations

@thedeskgamers @abbrcode @modpackker

Block or report T1xx1

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
T1xx1/README.md

Pinned Loading

  1. abbrcode/abbreviations-in-code abbrcode/abbreviations-in-code Public

    The list of common abbreviations in program codes.

    TypeScript 493 53

  2. trycatch.ts trycatch.ts
    1
    type Success<T> = {
    2
       data: T;
    3
       error: null;
    4
    };
    5
    type Failure<E> = {