Last change
on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
263 bytes
|
Line | |
---|
1 | /**
|
---|
2 | * Detect Electron renderer process, which is node, but we should
|
---|
3 | * treat as a browser.
|
---|
4 | */
|
---|
5 |
|
---|
6 | if (typeof process !== 'undefined' && process.type === 'renderer') {
|
---|
7 | module.exports = require('./browser.js');
|
---|
8 | } else {
|
---|
9 | module.exports = require('./node.js');
|
---|
10 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.