mirror of
https://github.com/thelounge/thelounge
synced 2024-12-22 10:23:07 +00:00
10 lines
135 B
JavaScript
10 lines
135 B
JavaScript
var diff;
|
|
|
|
module.exports = function(a, opt) {
|
|
if (a !== diff) {
|
|
diff = a;
|
|
return opt.fn(this);
|
|
}
|
|
|
|
return opt.inverse(this);
|
|
};
|