Skip to content
Permalink
9e97a2c29f
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
10 lines (9 sloc) 263 Bytes
/**
* 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');
}