One day I'll figure this shit out

This commit is contained in:
2025-05-28 09:09:41 -06:00
parent 0f9c377853
commit 65743d8562
6 changed files with 512 additions and 139 deletions

View File

@@ -7,7 +7,7 @@ const logFile = Deno.openSync("./log.txt", {
logFile.truncateSync(0);
export function log(message: any) {
export function log(...message: any) {
if (typeof message === "object") {
message = Deno.inspect(message);
}