dns-witch.net.eu.org/node_modules/semver/internal/debug.js

12 lines
240 B
JavaScript
Raw Permalink Normal View History

2025-07-05 16:19:59 +00:00
'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