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