UNPKG

qing-utils

Version:

js utils with ts declare, ObjectUtils, ArrayUtils, StringUtils, NumberUtils ...

16 lines (9 loc) 330 B
declare class ObjectUtils { static isEmpty(object: object): boolean static isNotEmpty(object: object): boolean static deepClone(object: object): object static toJson(object: object): string static jsonParse(objJson: string): object static consoleJson(object: object): void } export = ObjectUtils;