interface Deno.InspectOptions
Option which can be specified when performing Deno.inspect.
optional
colors: boolean = falseStylize output with ANSI colors.
optional
compact: boolean = trueTry to fit more than one entry of a collection on the same line.
optional
depth: number = 4Traversal depth for nested objects.
optional
breakLength: number = 80The maximum length for an inspection to take up a single line.
optional
escapeSequences: boolean = trueWhether or not to escape sequences.
optional
iterableLimit: number = 100The maximum number of iterable entries to print.
optional
showProxy: boolean = falseShow a Proxy's target and handler.
optional
sorted: boolean = falseSort Object, Set and Map entries by key.
optional
trailingComma: boolean = falseAdd a trailing comma for multiline collections.
optional
getters: boolean = falseEvaluate the result of calling getters.
optional
strAbbreviateSize: numberThe maximum length of a string before it is truncated with an ellipsis.