Sign in
chromium
/
devtools
/
devtools-frontend
/
c40b51a7fcf20ce04022a0f5cbfc957ee9e1aaed
/
.
/
node_modules
/
semver
/
internal
/
debug.js
blob: 20d1e9dceea90e730220344671d4807203f5d9d8 [
file
] [
log
] [
blame
]
'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