mirror of
https://github.com/thelounge/thelounge
synced 2025-02-20 07:08:26 +00:00
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);
|
|
};
|