Files
powerpoint-toolbox/node_modules/deep-diff/examples/issue-115.js
T
2025-03-07 19:22:02 +01:00

18 lines
369 B
JavaScript

var diff = require('../');
var expect = require('expect.js');
var thing1 = 'this';
var thing2 = 'that';
var thing3 = 'other';
var thing4 = 'another';
var oldArray = [thing1, thing2, thing3, thing4];
var newArray = [thing1, thing2];
diff.observableDiff(oldArray, newArray,
function (d) {
diff.applyChange(oldArray, d);
});
expect(oldArray).to.eql(newArray);