case 4137

This commit is contained in:
2022-03-10 19:58:45 +00:00
parent 304173317d
commit a4136f25a9
2 changed files with 30 additions and 1 deletions

View File

@@ -133,6 +133,15 @@ function ayRegisterHelpers() {
} //eof
///////////////////////////////////////////
// Concat helper using
// https://stackoverflow.com/a/52571635/8939
//
Handlebars.registerHelper('ayConcat', function() {
arguments = [...arguments].slice(0, -1);
return arguments.join('');
});
//##################################### LOCALIZATION & TRANSLATION ###################################################
///////////////////////////////////////////