Files
telegram_glpi/node_modules/semver/internal/debug.js
Александр Тороп 038bf44010 init
2024-03-30 18:27:37 +03:00

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