mirror of
https://github.com/rjNemo/federation
synced 2026-06-07 18:56:39 +00:00
5 lines
165 B
TypeScript
5 lines
165 B
TypeScript
/**
|
|
* Performs a deep equality check on two JavaScript values, tolerating cycles.
|
|
*/
|
|
export declare function equal(a: any, b: any): boolean;
|
|
export default equal;
|