mirror of
https://github.com/thelounge/thelounge
synced 2024-11-23 12:33:07 +00:00
dcefcd19cb
Closes #895
12 lines
150 B
JavaScript
12 lines
150 B
JavaScript
"use strict";
|
|
|
|
var diff;
|
|
|
|
module.exports = function(a, opt) {
|
|
if (a !== diff) {
|
|
diff = a;
|
|
return opt.fn(this);
|
|
}
|
|
|
|
return opt.inverse(this);
|
|
};
|