* Uses node's util.inspect to stringify a value. * * @param value The value which should be inspected. * @returns The string of the inspected value.
(value: unknown)
| 48 | * @returns The string of the inspected value. |
| 49 | */ |
| 50 | inspect(value: unknown): string { |
| 51 | return util.inspect(value, { |
| 52 | showHidden: false, |
| 53 | depth: 1 |
| 54 | }); |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Gets a debugger for a context. |
no outgoing calls