mirror of
				https://scm.univ-tours.fr/22107988t/rappaurio-sae501_502.git
				synced 2025-11-04 13:35:22 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			263 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			263 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/**
 | 
						|
 * Detect Electron renderer process, which is node, but we should
 | 
						|
 * treat as a browser.
 | 
						|
 */
 | 
						|
 | 
						|
if (typeof process !== 'undefined' && process.type === 'renderer') {
 | 
						|
  module.exports = require('./browser.js');
 | 
						|
} else {
 | 
						|
  module.exports = require('./node.js');
 | 
						|
}
 |