Files
JiboViteDocs/node_modules/es-semver/src/debug.js
Your Name 38652eb9b5 Initalize
2026-05-03 12:12:57 -04:00

17 lines
334 B
JavaScript

export let debug
if (
typeof process === 'object' &&
process.env &&
process.env.NODE_DEBUG &&
/\bsemver\b/i.test(process.env.NODE_DEBUG)
) {
debug = function () {
var args = Array.prototype.slice.call(arguments, 0)
args.unshift('SEMVER')
console.log.apply(console, args)
}
} else {
debug = function () {}
}