Adjust template
Signed-off-by: Tobias Berger <tobi.berger13@gmail.com>
This commit is contained in:
parent
b5326798ac
commit
17b09ad475
2 changed files with 14 additions and 6 deletions
|
@ -10,8 +10,12 @@ async function main(data) {
|
|||
}
|
||||
|
||||
fs.readFile("input", (err, data) => {
|
||||
console.time("Part 1")
|
||||
console.time("Part 1");
|
||||
if (err) throw err;
|
||||
main(data.toString()).then(console.log).catch(console.error);
|
||||
console.timeEnd("Part 1")
|
||||
main(data.toString())
|
||||
.then((...args) => {
|
||||
console.log(...args);
|
||||
console.timeEnd("Part 1");
|
||||
})
|
||||
.catch(console.error);
|
||||
});
|
||||
|
|
|
@ -10,8 +10,12 @@ async function main(data) {
|
|||
}
|
||||
|
||||
fs.readFile("input", (err, data) => {
|
||||
console.time("Part 2")
|
||||
console.time("Part 2");
|
||||
if (err) throw err;
|
||||
main(data.toString()).then(console.log).catch(console.error);
|
||||
console.timeEnd("Part 2")
|
||||
main(data.toString())
|
||||
.then((...args) => {
|
||||
console.log(...args);
|
||||
console.timeEnd("Part 2");
|
||||
})
|
||||
.catch(console.error);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue