mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-24 17:35:16 +00:00
10 lines
226 B
JavaScript
10 lines
226 B
JavaScript
|
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
|