Link

utilities overview

Added in v0.0.0


Table of contents


utils

mapObject

Signature

export declare const mapObject: <K extends string, V, R>(obj: Record<K, V>, fn: (value: V, key: K) => R) => Record<K, R>

Added in v0.0.2

notNil

Signature

export declare const notNil: <T>(t: T) => t is NonNullable<T>

Added in v0.0.0