Skip to content
View JacobWeisenburger's full-sized avatar
🚀
Available for hire!
🚀
Available for hire!
  • Weis Guys
  • Twin Cities, MN
  • 03:41 (UTC -05:00)
  • X @JakeWeisDev

Sponsors

@danmichaelo
@BrianCurliss
Block or Report

Block or report JacobWeisenburger

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. weis-guys/result weis-guys/result Public

    TypeScript 1

  2. zod_utilz zod_utilz Public

    Framework agnostic utilities for Zod

    TypeScript 141 7

  3. freerstore freerstore Public

    Firestore cost optimizer

    TypeScript 15

  4. TemporalDateUtils.ts TemporalDateUtils.ts
    1
    import { Temporal } from 'temporal'
    2
    
    
    3
    const TemporalDateUtils = ( datelike: string | Date ) => {
    4
        const date = typeof datelike === 'string' ? new Date( datelike ) : datelike
    5
        const datelikeString = typeof datelike === 'string' ? datelike : date.toISOString()
  5. partialSafeParse.ts partialSafeParse.ts
    1
    import { z } from 'zod'
    2
    import { mapValues, omit, pick } from 'lodash'
    3
    
    
    4
    function partialSafeParse<Schema extends z.ZodObject<any>> ( schema: Schema, input: unknown ) {
    5
        const result = schema.safeParse( input )
  6. Zustand custom persist storage template Zustand custom persist storage template
    1
    import { createStore } from 'zustand'
    2
    import { persist, StorageValue } from 'zustand/middleware'
    3
    
    
    4
    const store = createStore(
    5
        persist(