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 / comma_first.js
1 var diff = require('../')({
2     indent : 2,
3     comma : 'first',
4 });
5
6 var prev = { yy : 6, zz : 5, a : [1,2,3] };
7 var next = {
8     a : [ 1, 2, 3, [4], "z", /beep/, new Buffer(3) ],
9     fn : 8,
10     b : [5,6,7]
11 };
12 diff(prev, next).pipe(process.stdout);