aboutsummaryrefslogtreecommitdiffstats
path: root/index.ts
diff options
context:
space:
mode:
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);