AdventOfCode/JS/template/solution_a.mjs

22 lines
395 B
JavaScript
Raw Normal View History

2020-12-01 18:12:30 +01:00
import fs from "fs";
/**
* Main function for Part 1
2020-12-01 18:12:30 +01:00
*
* @param {string} data - Puzzle input as a single string.
*/
async function main(data) {
return;
}
fs.readFile("input", (err, data) => {
if (err) throw err;
console.time("Part 1");
main(data.toString())
.then((...args) => {
console.timeEnd("Part 1");
console.log(...args);
})
.catch(console.error);
2020-12-01 18:12:30 +01:00
});