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