UNPKG

purify-objects

Version:

A powerful TypeScript library for cleaning objects by removing empty values, with support for YAML and CSV formats

4 lines (3 loc) 193 B
export declare const isNil: (value: unknown) => value is null | undefined; export declare const isObject: (value: unknown) => value is object; export declare const cloneDeep: <T>(obj: T) => T;