UNPKG

@logtape/pretty

Version:

Beautiful text formatter for LogTape—perfect for local development

13 lines (10 loc) 273 B
import util from "node:util"; export interface InspectOptions { colors?: boolean; depth?: number | null; compact?: boolean; [key: string]: unknown; } export function inspect(obj: unknown, options?: InspectOptions): string { return util.inspect(obj, options); }