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 e7cf7cc commit 6cdb04fCopy full SHA for 6cdb04f
src/createYahooFinance.ts
@@ -57,13 +57,15 @@ class YahooFinance {
57
}
58
59
60
+ // deno-coverage-ignore-start
61
// @ts-ignore: relevant for ts-json-schema-generator
62
this._logObj = Deno.stdout.isTerminal()
63
// deno-lint-ignore no-explicit-any
64
? (obj: any, opts?: { depth?: number }) =>
65
this._opts.logger!.dir(obj, { depth: opts?.depth ?? 4, colors: true })
66
67
: (obj: any) => this._opts.logger!.info(JSON.stringify(obj, null, 2));
68
+ // deno-coverage-ignore-stop
69
70
71
0 commit comments