(value, options?: Options)
| 7 | // this utility is used for jest, which overrides console.dir |
| 8 | // and doesn't allow to specify `depth` |
| 9 | export function clog(value, options?: Options) { |
| 10 | const depth = options?.depth ?? 4 |
| 11 | console.debug(inspect(value, { depth })) |
| 12 | } |