UNPKG

@kwiz/common

Version:

KWIZ common utilities and helpers for M365 platform

6 lines (5 loc) 331 B
export declare function jsonParse<T = any>(str: string): T; /** stringify JSON object, but also sorts properties alphabetically */ export declare function jsonStringify(obj: any, space?: number): string; /** stringify json object without quotes on property names */ export declare function jsonStringifyNoQuotes(obj: any): string;