index.js 314 Bytes
Newer Older
Rosanny Sihombing's avatar
Rosanny Sihombing committed
1
/**
2
 * Detect Electron renderer / nwjs 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' || process.browser === true || process.__nwjs) {
	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
}