UNPKG

@krauters/environment

Version:

A TypeScript utility library that provides a fluent, type-safe API for defining, transforming, and managing environment variable configurations in applications.

9 lines 294 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.debug = debug; function debug(message, ...args) { if (process.env.KRAUTERS_ENVIRONMENT_DEBUG) { console.debug('[@krauters/environment]', message, ...args); } } //# sourceMappingURL=utils.js.map