aboutsummaryrefslogtreecommitdiffstats
path: root/index.ts
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2020-12-07 14:07:26 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2020-12-07 14:07:26 +0200
commit89cf2c6f98881f2f01c130e644be954ed66cd45f (patch)
tree7e44ce60ca4f99dc1793ec3446a80105ac5a83aa /index.ts
parentba9af02ad7c56e055877facbe78e082f9c925d24 (diff)
Solve 7.1
Diffstat (limited to 'index.ts')
-rw-r--r--index.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/index.ts b/index.ts
index ad8a47d..543c680 100644
--- a/index.ts
+++ b/index.ts
@@ -1,4 +1,6 @@
import * as fs from "fs";
+const util = require('util')
+
import { ExerciseModuleFunc } from "./types";
const args = process.argv;
@@ -15,7 +17,7 @@ import(modulePath).then(m => {
})
.then(result => {
console.log("=== RESULT ===");
- console.log(result);
+ console.log(util.inspect(result, { showHidden: false, depth: null }))
})
.catch(err => {
console.error(err);