UNPKG

jsout

Version:

A Syslog-compatible, small, and simple logger for Typescript/Javascript projects. Sponsored by https://aeroview.io

9 lines (8 loc) 245 B
/** * Portable inspect function that mimics util.inspect behavior * Works in Node.js, Bun, and browser environments */ export declare function portableInspect(obj: any, options?: { colors?: boolean; depth?: number | null; }): string;