File "index.js"

Full Path: C:/wamp64/www/Seleccion/node_modules/debug/src/index.js
File size: 263 bytes
MIME-type: text/plain
Charset: utf-8

/**
 * Detect Electron renderer process, which is node, but we should
 * treat as a browser.
 */

if (typeof process !== 'undefined' && process.type === 'renderer') {
  module.exports = require('./browser.js');
} else {
  module.exports = require('./node.js');
}