Skip to content
View kristapsPelna's full-sized avatar

Organizations

@SkywindHoldings

Block or report kristapsPelna

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. usestore-react usestore-react Public

    A simple and small state management lib for React that uses the bleeding edge React's useState hook. Which basically means no magic behind the curtains, only pure react APIs being used to share sta…

    TypeScript 10

  2. DeepReadonly.ts DeepReadonly.ts
    1
    type DeepReadonly<T> = T extends (infer R)[]
    2
      ? IDeepReadonlyArray<R>
    3
      : T extends Function ? T : T extends object ? DeepReadonlyObject<T> : T;
    4
    
                  
    5
    interface IDeepReadonlyArray<T> extends ReadonlyArray<DeepReadonly<T>> {}
  3. Quiver-Framework Quiver-Framework Public

    Forked from SkywindHoldings/Quiver-Framework

    Quiver is a micro framework for JavaScript and TypeScript.

    TypeScript 5

  4. react-advertising react-advertising Public

    Forked from KijijiCA/react-advertising

    A JavaScript library for display ads in React applications.

    JavaScript