GrandTabernacleAutoVI/server/node_modules/debug/src/index.js
killianmarty 02cc1ed028 server
2023-11-14 17:35:47 +01:00

10 lines
314 B
JavaScript

/**
* Detect Electron renderer / nwjs process, which is node, but we should
* treat as a browser.
*/
if (typeof process === 'undefined' || process.type === 'renderer' || process.browser === true || process.__nwjs) {
module.exports = require('./browser.js');
} else {
module.exports = require('./node.js');
}