Home Reference Source Test

lib/debug.js

module.exports = function debug(str) {
  if (process.env.DEBUG) {
    console.error(str);
  }
};