mirror of
https://github.com/stjornleysi/telegram_glpi.git
synced 2025-12-03 18:43:08 +00:00
10 lines
226 B
JavaScript
10 lines
226 B
JavaScript
const debug = (
|
|
typeof process === 'object' &&
|
|
process.env &&
|
|
process.env.NODE_DEBUG &&
|
|
/\bsemver\b/i.test(process.env.NODE_DEBUG)
|
|
) ? (...args) => console.error('SEMVER', ...args)
|
|
: () => {}
|
|
|
|
module.exports = debug
|