style: reformat all files using prettier

This commit is contained in:
Nils Knappmeier
2019-12-03 22:39:17 +01:00
parent 2f0991a022
commit 3fb331ef40
91 changed files with 5723 additions and 2213 deletions
@@ -5,7 +5,7 @@ var Handlebars = require('handlebars');
console.log('Testing built Handlebars with Node version ' + process.version);
var template = Handlebars.compile('Author: {{author}}');
var output = template({author: 'Yehuda'});
var output = template({ author: 'Yehuda' });
assert.strictEqual(output, 'Author: Yehuda');
console.log('Success');