/third_party/node/test/parallel/ |
D | test-whatwg-url-custom-searchparams-inspect.js | 14 util.inspect(sp, { breakLength: 1 }), property 21 assert.strictEqual(util.inspect(sp.keys(), { breakLength: 1 }), property
|
D | test-util-inspect.js | 567 util.inspect(a, { breakLength: Infinity }), property 707 util.inspect(err, { compact: true, breakLength: 5 }), property 711 util.inspect(err, { compact: true, breakLength: 1 }), property 715 util.inspect(err2, { compact: true, breakLength: 5 }), property 1514 const oneLine = util.inspect(obj, { breakLength: Infinity }); property 1518 const twoLines = util.inspect(obj, { breakLength: breakpoint }); property 1522 util.inspect(obj, { breakLength: breakpoint + 1 }), property 1664 let out = util.inspect(o, { compact: true, depth: 5, breakLength: 80 }); property 1678 out = util.inspect(o, { compact: false, depth: 5, breakLength: 60 }); property 1703 out = util.inspect(o.a[2][0][0], { compact: false, breakLength: 30 }); property [all …]
|
D | test-repl-autocomplete.js | 170 breakLength: 5, colors: true property
|
D | test-repl-reverse-search.js | 316 breakLength: 5, colors: true property
|
D | test-repl-history-navigation.js | 684 breakLength: 5, colors: true property
|
D | test-assert-deep.js | 26 breakLength: Infinity, property
|
/third_party/node/test/message/ |
D | util_inspect_error.js | 12 console.log(util.inspect(err, { compact: true, breakLength: 5 })); property
|
/third_party/node/lib/internal/util/ |
D | inspect.js | 188 breakLength: 80, property 264 breakLength: ctx.breakLength, property 324 breakLength: inspectDefaultOptions.breakLength, property 1463 if (actualMax * 3 + ctx.indentationLvl < ctx.breakLength && 1482 MathFloor((ctx.breakLength - ctx.indentationLvl) / actualMax), 1631 value.length > ctx.breakLength - ctx.indentationLvl - 4) { 1927 if (diff === 3 && ctx.breakLength < getStringWidth(str, ctx.colors)) { 1997 if (totalLength + output.length > ctx.breakLength) 2005 if (totalLength > ctx.breakLength) {
|
/third_party/node/lib/internal/test_runner/reporter/ |
D | spec.js | 21 const inspectOptions = { __proto__: null, colors: shouldColorize(process.stdout), breakLength: Infi… property
|
D | tap.js | 21 const inspectOptions = { colors: false, breakLength: Infinity }; property
|
/third_party/node/lib/internal/repl/ |
D | utils.js | 341 breakLength: Infinity, property
|
/third_party/node/lib/internal/console/ |
D | constructor.js | 520 breakLength: Infinity, property
|
/third_party/node/doc/api/ |
D | util.md | 517 `breakLength` options default is changed to `80`. 560 description: The `breakLength` option is supported now. 595 * `breakLength` {integer} The length at which input values are split across 601 longer than `breakLength`. If set to a number, the most `n` inner elements 603 `breakLength`. Short array elements are also grouped together. For more 681 console.log(util.inspect(o, { compact: true, depth: 5, breakLength: 80 })); 693 console.log(util.inspect(o, { compact: false, depth: 5, breakLength: 80 })); 716 // Setting `breakLength` to e.g. 150 will print the "Lorem ipsum" text in a
|
/third_party/node/lib/internal/ |
D | url.js | 315 if (length > ctx.breakLength) {
|
/third_party/node/lib/ |
D | buffer.js | 910 breakLength: Infinity, property
|
D | repl.js | 735 errStack += writer.options.breakLength >= line.length ?
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V15.md | 971 …ithub.com/nodejs/node/commit/9f7fbcc64d)] - **test**: add coverage for breakLength one-column arra…
|
D | CHANGELOG_V12.md | 5999 …* change inspect compact and breakLength default (Ruben Bridgewater) [#27109](https://github.com/n… 6158 …c9fece38c8)] - **(SEMVER-MAJOR)** **util**: change inspect compact and breakLength default (Ruben …
|
D | CHANGELOG_V11.md | 225 …js/node/commit/12737b3789)] - **util**: `inspect()` should not exceed `breakLength` (Ruben Bridgew…
|
D | CHANGELOG_V14.md | 1850 …ithub.com/nodejs/node/commit/2896219613)] - **test**: add coverage for breakLength one-column arra…
|
D | CHANGELOG_V6.md | 4223 * **util**: Added a `breakLength` option to `util.inspect()` to control how objects are formatted a…
|