We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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.
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
TypeScript 2
Framework agnostic utilities for Zod
TypeScript 200 11
Firestore cost optimizer
TypeScript 26
import { Temporal } from 'temporal'
const TemporalDateUtils = ( datelike: string | Date ) => {
const date = typeof datelike === 'string' ? new Date( datelike ) : datelike
const datelikeString = typeof datelike === 'string' ? datelike : date.toISOString()
import { z } from 'zod'
import { mapValues, omit, pick } from 'lodash'
function partialSafeParse<Schema extends z.ZodObject<any>> ( schema: Schema, input: unknown ) {
const result = schema.safeParse( input )
import { createStore } from 'zustand'
import { persist, StorageValue } from 'zustand/middleware'
const store = createStore(
persist(
There was an error while loading. Please reload this page.