检查两个对象是否深度相等。Bun 的 测试运行器 中的 expect().toEqual()
会在内部使用此功能。
const a = { a: 1, b: 2, c: { d: 3 } };
const b = { a: 1, b: 2, c: { d: 3 } };
Bun.deepEquals(a, b); // true
将 true
作为第三个参数传递以启用严格模式。Bun 的 测试运行器 中的 expect().toStrictEqual()
会在内部使用此功能。
以下示例在非严格模式下会返回 true
,但在严格模式下会返回 false
。
// undefined values
Bun.deepEquals({}, { a: undefined }, true); // false
// undefined in arrays
Bun.deepEquals(["asdf"], ["asdf", undefined], true); // false
// sparse arrays
Bun.deepEquals([, 1], [undefined, 1], true); // false
// object literals vs instances w/ same properties
class Foo {
a = 1;
}
Bun.deepEquals(new Foo(), { a: 1 }, true); // false
有关更多实用工具,请参见 文档 > API > 实用工具。