UNPKG

smart-json-diff

Version:

A modern, compact JSON comparison library with path-aware output and multiple output modes

5 lines (4 loc) 264 B
export declare function isObject(val: any): val is Record<string, any>; export declare function isArray(val: any): val is any[]; export declare function isPrimitive(val: any): boolean; export declare function deepEquals(a: any, b: any, strict?: boolean): boolean;