отчет

This commit is contained in:
2025-05-26 00:41:29 +04:00
parent a996e5ce11
commit 5d3abb140d
13004 changed files with 1726068 additions and 0 deletions

11
Lab/node_modules/deep-is/example/cmp.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
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 }
)
]);