functionequals(a, b) {
if (a === b)
returntrue;
if (typeof a !== typeof b)
returnfalse;
if (typeof a !== "object")
returnfalse;
if (a === null)
returnfalse;
returnJSON.stringify(a) === JSON.stringify(b);
}
export { equals };
//# sourceMappingURL=index.mjs.map