mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
7 lines
162 B
JavaScript
7 lines
162 B
JavaScript
Handlebars.registerHelper('ifCond', function (v1, v2, options) {
|
|
if(v1 === v2) {
|
|
return options.fn(this);
|
|
}
|
|
return options.inverse(this);
|
|
});
|