Sign in
cobalt
/
cobalt.git
/
04cd6faca4dd5039a1b810e9ba7b7a79e51a781d
/
.
/
src
/
cobalt
/
debug
/
remote
/
devtools
/
node_modules
/
deep-is
/
example
/
cmp.js
blob: 67014b88dcbc9b2ebb6398bf79e8f15c628fcf51 [
file
]
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
}
)
]);