mirror of
https://github.com/p-stream/providers.git
synced 2026-01-11 20:10:33 +00:00
5 lines
180 B
TypeScript
5 lines
180 B
TypeScript
import { inspect } from 'node:util';
|
|
|
|
export function logDeepObject(object: Record<any, any>) {
|
|
console.log(inspect(object, { showHidden: false, depth: null, colors: true }));
|
|
}
|