mirror of
				https://git.mirrors.martin98.com/https://github.com/sub-store-org/Sub-Store.git
				synced 2025-10-31 09:51:09 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			251 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			251 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /**
 | |
|  * 为节点添加 tls 证书指纹
 | |
|  * 示例
 | |
|  * #fingerprint=...
 | |
|  */
 | |
| function operator(proxies) {
 | |
|     const { fingerprint } = $arguments;
 | |
|     proxies.forEach(proxy => {
 | |
|         proxy['tls-fingerprint'] = fingerprint;
 | |
|     });
 | |
|     return proxies;
 | |
| } | 
