diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2020-12-07 14:07:26 +0200 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2020-12-07 14:07:26 +0200 |
| commit | 89cf2c6f98881f2f01c130e644be954ed66cd45f (patch) | |
| tree | 7e44ce60ca4f99dc1793ec3446a80105ac5a83aa /index.ts | |
| parent | ba9af02ad7c56e055877facbe78e082f9c925d24 (diff) | |
Solve 7.1
Diffstat (limited to 'index.ts')
| -rw-r--r-- | index.ts | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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); |
