(obj: unknown, options: LoupeOptions = {})
| 242 | } |
| 243 | |
| 244 | export function inspect(obj: unknown, options: LoupeOptions = {}): string { |
| 245 | if (options.truncate === 0) { |
| 246 | options.truncate = Number.POSITIVE_INFINITY |
| 247 | } |
| 248 | return loupe.inspect(obj, options) |
| 249 | } |
| 250 | |
| 251 | export function objDisplay(obj: unknown, options: LoupeOptions = {}): string { |
| 252 | if (typeof options.truncate === 'undefined') { |
no outgoing calls
no test coverage detected