UNPKG

unnbound-logger-sdk

Version:

A structured logging library with TypeScript support using Pino. Provides consistent, well-typed logging with automatic logId, workflowId, traceId, and deploymentId tracking across operational contexts.

8 lines (7 loc) 281 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.decode = exports.encode = void 0; const encode = (value) => value.replaceAll('\n', '\r'); exports.encode = encode; const decode = (value) => value.replaceAll('\r', '\n'); exports.decode = decode;