import { inspect } from 'node:util'; export function pretty(obj) { return inspect(obj, { colors: true, depth: null, breakLength: 120 }); }