Fix unterminated template literal

This commit is contained in:
danbulant 2019-09-28 17:20:42 +02:00
parent 1fa460294f
commit 9ab123f431

View file

@ -109,7 +109,7 @@ fs.readdirSync('./input/').forEach(file => {
s2c.query(fs.readFileSync(file))
.then(result => {
console.log(result.csv);
log(`Task from file ${file} done in `` + Math.round(result.end - result.start) + "ms");
log(`Task from file ${file} done in ` + Math.round(result.end - result.start) + "ms");
con.end();
})
.catch(err => {error(err); process.exit(0)})