Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
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.
20 lines
584 B
20 lines
584 B
1 year ago
|
'use strict';
|
||
|
var aCallable = require('../internals/a-callable');
|
||
|
|
||
|
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 = aCallable(resolve);
|
||
|
this.reject = aCallable(reject);
|
||
|
};
|
||
|
|
||
|
// `NewPromiseCapability` abstract operation
|
||
|
// https://tc39.es/ecma262/#sec-newpromisecapability
|
||
|
module.exports.f = function (C) {
|
||
|
return new PromiseCapability(C);
|
||
|
};
|