You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
226 B

4 years ago
  1. const debug = (
  2. typeof process === 'object' &&
  3. process.env &&
  4. process.env.NODE_DEBUG &&
  5. /\bsemver\b/i.test(process.env.NODE_DEBUG)
  6. ) ? (...args) => console.error('SEMVER', ...args)
  7. : () => {}
  8. module.exports = debug