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.
		
		
		
		
		
			
		
			
				
					
					
						
							18 lines
						
					
					
						
							522 B
						
					
					
				
			
		
		
	
	
							18 lines
						
					
					
						
							522 B
						
					
					
				'use strict'; | 
						|
var aFunction = require('../internals/a-function'); | 
						|
 | 
						|
var PromiseCapability = function (C) { | 
						|
  var resolve, reject; | 
						|
  this.promise = new C(function ($$resolve, $$reject) { | 
						|
    if (resolve !== undefined || reject !== undefined) throw TypeError('Bad Promise constructor'); | 
						|
    resolve = $$resolve; | 
						|
    reject = $$reject; | 
						|
  }); | 
						|
  this.resolve = aFunction(resolve); | 
						|
  this.reject = aFunction(reject); | 
						|
}; | 
						|
 | 
						|
// 25.4.1.5 NewPromiseCapability(C) | 
						|
module.exports.f = function (C) { | 
						|
  return new PromiseCapability(C); | 
						|
};
 | 
						|
 |