Skip to content
View foretoo's full-sized avatar
Block or Report

Block or report foretoo

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. round-polygon round-polygon Public

    Tiny, typed, dependency free tool to round corners of any 2d-polygon.

    TypeScript 19

  2. react-cloud-letter react-cloud-letter Public

    Wrap your letter in lovely cloud-like shape with React.

    TypeScript 3

  3. Extension of a loosely typed Map<K, ... Extension of a loosely typed Map<K, V> generic in TypeScript
    1
    interface TypedMap<M extends Record<string | number | symbol, any>> extends Map<keyof M, any> {
    2
    	get: <K extends keyof M>(key: K) => M[K]
    3
    	set: <K extends keyof M>(key: K, value: M[K]) => this
    4
    	has: <K extends keyof M>(key: K) => boolean 
    5
    	delete: <K extends keyof M>(key: K) => boolean
  4. jyzx jyzx Public

    static jsx renderer, with a simple signals support

    TypeScript