File "debug.js"
Full Path: C:/wamp64/www/Seleccion/node_modules/semver/internal/debug.js
File size: 240 bytes
MIME-type: text/plain
Charset: utf-8
'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