@daiso-tech/core
Version:
The library offers flexible, framework-agnostic solutions for modern web applications, built on adaptable components that integrate seamlessly with popular frameworks like Next Js.
16 lines (15 loc) • 405 B
TypeScript
/**
* @module Utilities
*/
/**
* @internal
*/
export declare function objectSize(object: Record<string | number | symbol, any>): number;
/**
* @internal
*/
export declare function isObjectEmpty(object: Record<string | number | symbol, any>): boolean;
/**
* @internal
*/
export declare function removeUndefinedProperties<TObject extends Partial<Record<string, unknown>>>(object: TObject): TObject;