import util from 'node:util'; export const showMore = (obj: any, depth = 5) => { return util.inspect(obj, { showHidden: false, depth, colors: true }); };