UNPKG

earljs

Version:

Ergonomic, modern and type-safe assertion library

9 lines (8 loc) 402 B
/** * Extensible equality algorithm used by all functions that check deep equality. * @internal * Not exported itself, but it's exposed through validators. \ * Do not confuse with `isEqual` validator. * @see https://earljs.dev/docs/advanced/equality-algorithm */ export declare function isEqual(value: unknown, other: unknown, options?: import("./EqualityOptions").EqualityOptions): boolean;