2026-03-25 23:55:36 +07: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
|