UNPKG

@typed-firestore/server

Version:

Elegant, typed abstractions for Firestore in server environments

12 lines (10 loc) 230 B
export function verboseLog(...args: unknown[]): void { if (process.env.VERBOSE) { console.log(...args); } } export function verboseCount(label: string): void { if (process.env.VERBOSE) { console.count(label); } }