This commit is contained in:
2024-11-27 15:08:17 +00:00
parent c08cf2d046
commit 0574d9bc7a
298 changed files with 29533 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
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