Show More
Commit Description:
fig bugs in login report
Commit Description:
fig bugs in login report
References:
File last commit:
Show/Diff file:
Action:
node_modules/core-js/modules/_new-promise-capability.js
| 18 lines
| 504 B
| application/javascript
| JavascriptLexer
|
r789 | 'use strict'; | |||
// 25.4.1.5 NewPromiseCapability(C) | ||||
var aFunction = require('./_a-function'); | ||||
function PromiseCapability(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); | ||||
} | ||||
module.exports.f = function (C) { | ||||
return new PromiseCapability(C); | ||||
}; | ||||