aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/nopt/lib/debug.js
blob: 544ab382ca85c0634b75643b5ffefbef01fd3be1 (plain)
1
2
3
4
5
/* istanbul ignore next */
module.exports = process.env.DEBUG_NOPT || process.env.NOPT_DEBUG
  // eslint-disable-next-line no-console
  ? (...a) => console.error(...a)
  : () => {}