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