wikibase-edit
Version:
Edit Wikibase from NodeJS
22 lines • 876 B
JavaScript
const { DEBUG = '' } = (globalThis.process?.env || {});
const namespace = 'wikibase-edit';
export const debugMode = DEBUG === '*' || (DEBUG.length > 0 && namespace.startsWith(DEBUG.replace(/\*$/, ''))) || DEBUG.startsWith(`${namespace}:`);
const debugSection = DEBUG.split(':').slice(1).join(':').replace(/\*$/, '');
export function debug(section, ...args) {
if (!debugMode)
return;
if (debugSection && !section.startsWith(debugSection))
return;
const timestamp = new Date().toISOString();
console.error(`\x1B[90m${timestamp}\x1B[39m \x1B[35m${namespace}:${section}\x1B[39m`, ...args.map(stringify));
}
function stringify(data) {
if (typeof data === 'string')
return data;
const str = JSON.stringify(data);
if (str === '{}' || str === '[]')
return '';
else
return str;
}
//# sourceMappingURL=debug.js.map