Files
reacord/helpers/log-pretty.ts
2021-12-26 12:06:06 -06:00

13 lines
264 B
TypeScript

import { inspect } from "node:util"
// eslint-disable-next-line import/no-unused-modules
export function logPretty(value: unknown) {
console.info(
inspect(value, {
// depth: Number.POSITIVE_INFINITY,
depth: 10,
colors: true,
}),
)
}