mirror of
https://github.com/Hopiu/postal.js.git
synced 2026-04-28 02:24:44 +00:00
8 lines
197 B
JavaScript
8 lines
197 B
JavaScript
|
|
var DistinctPredicate = function() {
|
||
|
|
var previous;
|
||
|
|
return function(data) {
|
||
|
|
var result = _.isEqual(data, previous);
|
||
|
|
previous = _.clone(data);
|
||
|
|
return result;
|
||
|
|
};
|
||
|
|
};
|