Nouveaux modules

This commit is contained in:
2023-11-07 22:24:06 +01:00
parent 7988ff0850
commit ec6063d74b
147 changed files with 11099 additions and 0 deletions

9
node_modules/semver/internal/debug.js generated vendored Normal file
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