You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							13 lines
						
					
					
						
							477 B
						
					
					
				
			
		
		
	
	
							13 lines
						
					
					
						
							477 B
						
					
					
				| 'use strict';
 | |
| // https://github.com/tc39/proposal-promise-try
 | |
| var $export = require('./_export');
 | |
| var newPromiseCapability = require('./_new-promise-capability');
 | |
| var perform = require('./_perform');
 | |
| 
 | |
| $export($export.S, 'Promise', { 'try': function (callbackfn) {
 | |
|   var promiseCapability = newPromiseCapability.f(this);
 | |
|   var result = perform(callbackfn);
 | |
|   (result.e ? promiseCapability.reject : promiseCapability.resolve)(result.v);
 | |
|   return promiseCapability.promise;
 | |
| } });
 |