UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

16 lines (11 loc) 212 B
// ets_tracing: off let _tracing = false export function enableTracing() { _tracing = true } export function disableTracing() { _tracing = false } export function isTracingEnabled() { return _tracing }