All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.internal.debug.js Maven / Gradle / Ivy

There is a newer version: 7.6.3
Show newest version
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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy