UNPKG

pika-id

Version:

The pragmatic ID system

13 lines (12 loc) 329 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.error = exports.warn = void 0; const PREFIX = "[pika]"; const warn = (...args) => { console.warn(`${PREFIX}`, ...args); }; exports.warn = warn; const error = (...args) => { console.error(`${PREFIX}`, ...args); }; exports.error = error;