Files
reacord/packages/helpers/log-pretty.ts
2022-07-27 22:42:35 -05:00

12 lines
211 B
TypeScript

import { inspect } from "node:util"
export function logPretty(value: unknown) {
console.info(
inspect(value, {
// depth: Number.POSITIVE_INFINITY,
depth: 10,
colors: true,
}),
)
}