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 f145a53 commit 85373aeCopy full SHA for 85373ae
doc/api/util.md
@@ -183,9 +183,6 @@ property take precedence over `--trace-deprecation` and
183
<!-- YAML
184
added: v0.5.3
185
changes:
186
- - version: REPLACEME
187
- pr-url: https://github.com/nodejs/node/pull/17907
188
- description: The `%o` specifiers `depth` option is now set to `Infinity`.
189
- version: v8.4.0
190
pr-url: https://github.com/nodejs/node/pull/14558
191
description: The `%o` and `%O` specifiers are supported now.
lib/util.js
@@ -217,7 +217,8 @@ function formatWithOptions(inspectOptions, f) {
217
{
218
const opts = Object.assign({}, inspectOptions, {
219
showHidden: true,
220
- showProxy: true
+ showProxy: true,
221
+ depth: 4
222
});
223
tempStr = inspect(arguments[a++], opts);
224
break;
0 commit comments