1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-05-10 07:47:07 +01:00
This commit is contained in:
hacksalot
2016-01-09 22:15:50 -05:00
parent b7fffbcf73
commit 4c954b79df
2 changed files with 3 additions and 17 deletions

View File

@ -136,13 +136,10 @@ Output routines for HackMyResume.
HANDLEBARS.registerHelper( require('../helpers/console-helpers') );
var template = HANDLEBARS.compile(rawTpl, { strict: false, assumeObjects: false });
var tot = 0;
info.keywords.forEach(function(g) {
tot += g.count;
});
info.keywords.forEach(function(g) { tot += g.count; });
info.keywords.totalKeywords = tot;
var output = template( info );
this.log(chalk.cyan(output));
this.log( chalk.cyan(output) );
break;
case HME.beforeConvert: