Skip to content

Instantly share code, notes, and snippets.

@adg29
Created August 22, 2016 21:17
Show Gist options
  • Save adg29/f312d6fab93652944a8a1026142491b1 to your computer and use it in GitHub Desktop.
Save adg29/f312d6fab93652944a8a1026142491b1 to your computer and use it in GitHub Desktop.
Concat Handlebars helper
module.exports.register = function (Handlebars, options) {
Handlebars.registerHelper('concat', function() {
var outStr = '';
for(var arg in arguments){
if(typeof arguments[arg]!='object'){
outStr += arguments[arg];
}
}
return outStr;
});
};
@akotulu
Copy link

akotulu commented May 10, 2017

Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment