This commit is contained in:
2024-08-13 01:22:32 +02:00
commit fd8251eb7a
5199 changed files with 399521 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
module.exports = function(needle, haystack, options) {
// needle = Handlebars.escapeExpression(needle);
// haystack = Handlebars.escapeExpression(haystack);
return (haystack.indexOf(needle) > -1) ? options.fn(this) : options.inverse(this);
// return options.fn(this);
};