We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6ee32d commit 71b59a6Copy full SHA for 71b59a6
templates/cli/lib/parser.js.twig
@@ -23,8 +23,12 @@ const parse = (data) => {
23
drawJSON(data[key]);
24
}
25
} else if (typeof data[key] === 'object') {
26
- console.log(`${chalk.yellow.bold.underline(key)}`)
27
- parse(data[key]);
+ if (data[key] && data[key].constructor.name === 'BigNumber') {
+ console.log(`${chalk.yellow.bold(key)} : ${data[key]}`);
28
+ } else {
29
+ console.log(`${chalk.yellow.bold.underline(key)}`)
30
+ parse(data[key]);
31
+ }
32
} else {
33
console.log(`${chalk.yellow.bold(key)} : ${data[key]}`);
34
0 commit comments