mirror of
https://github.com/thelounge/thelounge
synced 2024-11-27 06:20:26 +00:00
dcefcd19cb
Closes #895
11 lines
165 B
JavaScript
11 lines
165 B
JavaScript
"use strict";
|
|
|
|
module.exports = function(a, b, opt) {
|
|
a = a.toString();
|
|
b = b.toString();
|
|
if (a === b) {
|
|
return opt.fn(this);
|
|
}
|
|
|
|
return opt.inverse(this);
|
|
};
|