Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Deno.InspectOptions

interface InspectOptions {
colors?: boolean;
compact?: boolean;
depth?: number;
getters?: boolean;
iterableLimit?: number;
showHidden?: boolean;
showProxy?: boolean;
sorted?: boolean;
strAbbreviateSize?: number;
trailingComma?: boolean;
}

§Properties

§
colors?: boolean
[src]

Stylize output with ANSI colors. Defaults to false.

§
compact?: boolean
[src]

Try to fit more than one entry of a collection on the same line. Defaults to true.

§
depth?: number
[src]

Traversal depth for nested objects. Defaults to 4.

§
getters?: boolean
[src]
  • Evaluate the result of calling getters. Defaults to false.
§
iterableLimit?: number
[src]

The maximum number of iterable entries to print. Defaults to 100.

§
showHidden?: boolean
[src]

Show an object's non-enumerable properties. Defaults to false.

§
showProxy?: boolean
[src]

Show a Proxy's target and handler. Defaults to false.

§
sorted?: boolean
[src]

Sort Object, Set and Map entries by key. Defaults to false.

§
strAbbreviateSize?: number
[src]

The maximum length of a string before it is truncated with an ellipsis

§
trailingComma?: boolean
[src]

Add a trailing comma for multiline collections. Defaults to false.