1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-05-02 20:37:08 +01:00

style: remove unnecessary expression

This commit is contained in:
hacksalot
2018-02-04 01:43:51 -05:00
parent 55196c2766
commit caca653666
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ Definition of the HandlebarsGenerator class.
template = HANDLEBARS.compile(tpl, {
strict: false,
assumeObjects: false,
noEscape: data.opts.noescape || false
noEscape: data.opts.noescape
});
return template(data);
} catch (_error) {