index.js 263 Bytes
Newer Older
Rosanny Sihombing's avatar
Rosanny Sihombing committed
1
/**
2
 * Detect Electron renderer process, which is node, but we should
Rosanny Sihombing's avatar
Rosanny Sihombing committed
3
4
5
 * treat as a browser.
 */

6
7
if (typeof process !== 'undefined' && process.type === 'renderer') {
  module.exports = require('./browser.js');
Rosanny Sihombing's avatar
Rosanny Sihombing committed
8
} else {
9
  module.exports = require('./node.js');
Rosanny Sihombing's avatar
Rosanny Sihombing committed
10
}