UNPKG

react-tesna-utils

Version:

A versatile utility library featuring optimized functions for data manipulation, clipboard handling, text truncation, comparison, validation, and more. Designed for modern JavaScript and TypeScript projects with efficient and reusable solutions.

7 lines (6 loc) 170 B
type AnyObject = { [key: string]: any; }; type AnyArray = any[]; export declare function removeEmptyKeys(obj: AnyObject | AnyArray): AnyObject | AnyArray; export {};