UNPKG

kliedz

Version:

Dead-simple, stateless logging utility for JavaScript and TypeScript. Pure functions. No dependencies. Just log.

9 lines (8 loc) 151 B
export const logThresholds = [ "debug", "info", "warn", "error", "silent", ] as const; export type LogThreshold = (typeof logThresholds)[number];