mirror of
				https://github.com/crazy-max/ghaction-upx.git
				synced 2025-11-04 04:58:11 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			302 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			302 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict';
 | 
						|
module.exports = (promise, onFinally) => {
 | 
						|
	onFinally = onFinally || (() => {});
 | 
						|
 | 
						|
	return promise.then(
 | 
						|
		val => new Promise(resolve => {
 | 
						|
			resolve(onFinally());
 | 
						|
		}).then(() => val),
 | 
						|
		err => new Promise(resolve => {
 | 
						|
			resolve(onFinally());
 | 
						|
		}).then(() => {
 | 
						|
			throw err;
 | 
						|
		})
 | 
						|
	);
 | 
						|
};
 |