Diff plain arrays in computes
From #216
Allows a compute with an array to use diffing similar to the following example:
var which = compute(false);
var a = {}, b = {}, c = {};
var list = compute(function(){
return which() ? [a,c]: [a,b,c]
});
stache("{{#each list}}...");