mirror of
https://github.com/lone-cloud/prism
synced 2026-06-03 19:54:44 -07:00
3 lines
124 B
TypeScript
3 lines
124 B
TypeScript
import { VERBOSE } from '../constants/config';
|
|
|
|
export const log = (...args: unknown[]) => VERBOSE && console.log(...args);
|