Files
GNX-mailEnterprise/frontend/node_modules/semver/internal/debug.js
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

12 lines
240 B
JavaScript

'use strict'
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