Export 0.2.1
[platform/framework/web/web-ui-fw.git] / libs / js / jquery-mobile-1.2.0 / node_modules / grunt / node_modules / nodeunit / node_modules / tap / node_modules / difflet / example / cmp_object.js
1 var difflet = require('../');
2 var s = difflet({ indent : 2, comment : true }).compare(
3     { z : [6,7], a : 'abcdefgh', b : [ 31, 'xxt' ] },
4     { x : 5, a : 'abdcefg', b : [ 51, 'xxs' ] }
5 );
6 console.log(s);