Skip to content
View dankreiger's full-sized avatar
🐶
woof
🐶
woof

Block or report dankreiger

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
dankreiger/README.md

Hi, I’m @dankreiger

Pinned Loading

  1. async-toolbelt async-toolbelt Public

    Lightweight TypeScript utilities for composing sync and async function pipelines with full type inference.

    TypeScript

  2. tiny-either tiny-either Public

    TypeScript Either monad with helper utilities for safe error handling and functional composition.

    TypeScript

  3. haskell-topics haskell-topics Public

    Haskell

  4. strong-string strong-string Public

    Strongly typed string functions

    TypeScript

  5. nx-openapi-codegen nx-openapi-codegen Public

    Create nx monorepo with openapi generated helper packages

    TypeScript

  6. observables observables
    1
    // Represents an observer that listens to data emitted by the observable.
    2
    type Observer<T> = {
    3
      next: (value: T) => void;       // Handler for each emitted value
    4
      error: (error: unknown) => void; // Handler for any error that occurs
    5
      complete: () => void;           // Handler for the completion of the observable sequence