Open devmondo opened 8 years ago
hi,
i think that oldVal should come before newVal, so instead of
AsyncWatch(obj, 'a.b.c', function(newVal,oldVal){ console.log('set', value); });
it should be
AsyncWatch(obj, 'a.b.c', function(oldVal,newVal){ console.log('set', value); });
hi,
i think that oldVal should come before newVal, so instead of
it should be