Home
last modified time | relevance | path

Searched refs:breakLength (Results 1 – 21 of 21) sorted by relevance

/third_party/node/test/parallel/
Dtest-whatwg-url-custom-searchparams-inspect.js14 util.inspect(sp, { breakLength: 1 }), property
21 assert.strictEqual(util.inspect(sp.keys(), { breakLength: 1 }), property
Dtest-util-inspect.js567 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 …]
Dtest-repl-autocomplete.js170 breakLength: 5, colors: true property
Dtest-repl-reverse-search.js316 breakLength: 5, colors: true property
Dtest-repl-history-navigation.js684 breakLength: 5, colors: true property
Dtest-assert-deep.js26 breakLength: Infinity, property
/third_party/node/test/message/
Dutil_inspect_error.js12 console.log(util.inspect(err, { compact: true, breakLength: 5 })); property
/third_party/node/lib/internal/util/
Dinspect.js188 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/
Dspec.js21 const inspectOptions = { __proto__: null, colors: shouldColorize(process.stdout), breakLength: Infi… property
Dtap.js21 const inspectOptions = { colors: false, breakLength: Infinity }; property
/third_party/node/lib/internal/repl/
Dutils.js341 breakLength: Infinity, property
/third_party/node/lib/internal/console/
Dconstructor.js520 breakLength: Infinity, property
/third_party/node/doc/api/
Dutil.md517 `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/
Durl.js315 if (length > ctx.breakLength) {
/third_party/node/lib/
Dbuffer.js910 breakLength: Infinity, property
Drepl.js735 errStack += writer.options.breakLength >= line.length ?
/third_party/node/doc/changelogs/
DCHANGELOG_V15.md971 …ithub.com/nodejs/node/commit/9f7fbcc64d)] - **test**: add coverage for breakLength one-column arra…
DCHANGELOG_V12.md5999 …* 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 …
DCHANGELOG_V11.md225 …js/node/commit/12737b3789)] - **util**: `inspect()` should not exceed `breakLength` (Ruben Bridgew…
DCHANGELOG_V14.md1850 …ithub.com/nodejs/node/commit/2896219613)] - **test**: add coverage for breakLength one-column arra…
DCHANGELOG_V6.md4223 * **util**: Added a `breakLength` option to `util.inspect()` to control how objects are formatted a…