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

Block or report johnthecat

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. regexp-toolset regexp-toolset Public

    Collection of regexp utils, written in typescript

    TypeScript 6 1

  2. Simplified functor-less implementati... Simplified functor-less implementation of Van Laarhoven lenses in Typescript.
    1
    
                  
    2
    export type Lens<S, A> = (f: (y: A) => A, x: S) => S;
    3
    
                  
    4
    export const view = <S, A>(lens: Lens<S, A>) => (x: S) => {
    5
      let value: unknown = null;