UNPKG

distid

Version:

Distributed ID generator for large-scale systems

9 lines (8 loc) 283 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.defaultLogger = void 0; const defaultLogger = (msg) => { const timestamp = new Date().toISOString(); console.log(`[DistId] ${timestamp} - ${msg}`); }; exports.defaultLogger = defaultLogger;