mirror of
				https://github.com/crazy-max/ghaction-upx.git
				synced 2025-11-04 04:58:11 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			299 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			299 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict';
 | 
						|
const npmConf = require('npm-conf')();
 | 
						|
 | 
						|
module.exports = () => {
 | 
						|
	return process.env.HTTPS_PROXY ||
 | 
						|
		process.env.https_proxy ||
 | 
						|
		process.env.HTTP_PROXY ||
 | 
						|
		process.env.http_proxy ||
 | 
						|
		npmConf.get('https-proxy') ||
 | 
						|
		npmConf.get('http-proxy') ||
 | 
						|
		npmConf.get('proxy') ||
 | 
						|
		null;
 | 
						|
};
 |