'use strict';
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);
}
exports.equals = equals;
//# sourceMappingURL=index.cjs.map