mirror of
				https://hub.gitmirror.com/https://github.com/gradle/actions.git
				synced 2025-10-31 01:50:01 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			291 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			291 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| "use strict";
 | |
| var old;
 | |
| if (typeof Promise !== "undefined") old = Promise;
 | |
| function noConflict() {
 | |
|     try { if (Promise === bluebird) Promise = old; }
 | |
|     catch (e) {}
 | |
|     return bluebird;
 | |
| }
 | |
| var bluebird = require("./promise")();
 | |
| bluebird.noConflict = noConflict;
 | |
| module.exports = bluebird;
 | 
