Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « src « debug « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf4c57f259df2e16761b45e2636db307c89ba419 (plain)
1
2
3
4
5
6
7
8
9
10
/**
 * 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');
}