astro-ghostcms/.pnpm-store/v3/files/ab/5899756c214ca0eb1d95d4f5667...

12 lines
207 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
var equal = require('../');
console.dir([
equal(
{ a : [ 2, 3 ], b : [ 4 ] },
{ a : [ 2, 3 ], b : [ 4 ] }
),
equal(
{ x : 5, y : [6] },
{ x : 5, y : 6 }
)
]);