Files
CATALOGO_INFINITY/backend/node_modules/semver/internal/debug.js
T
2026-06-09 08:25:57 -05: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