Sophie

Sophie

distrib > Fedora > 18 > x86_64 > media > updates > by-pkgid > a3a9127f4209d1b73dcf9ae8f27a242a > files > 8

nodejs-deep-equal-0.0.0-2.fc18.noarch.rpm

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 }
    )
]);