UNPKG

@squiz/json-schema-library

Version:

Customizable and hackable json-validator and json-schema utilities for traversal, data generation and validation

8 lines (7 loc) 250 B
/** * deep comparison of javascript types. Better handling than using * JSON.stringify, where property order is accounted for * * @returns true, if data types are deep equal */ export default function deepCompareStrict(a: any, b: any): boolean;