1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/deep-equal/example/cmp.js

12 lines
167 B
JavaScript
Raw Normal View History

2023-12-18 13:12:25 +08:00
var equal = require('../');
console.dir([
2024-01-16 21:26:16 +08:00
equal(
{ a: [2, 3], b: [4] },
{ a: [2, 3], b: [4] }
),
equal(
{ x: 5, y: [6] },
{ x: 5, y: 6 }
)
2023-12-18 13:12:25 +08:00
]);