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.
18 lines
457 B
18 lines
457 B
1 year ago
|
'use strict';
|
||
|
|
||
|
var GetIntrinsic = require('get-intrinsic');
|
||
|
var callBind = require('call-bind');
|
||
|
|
||
|
var $resolve = GetIntrinsic('%Promise.resolve%', true);
|
||
|
var $PromiseResolve = $resolve && callBind($resolve);
|
||
|
|
||
|
// https://262.ecma-international.org/9.0/#sec-promise-resolve
|
||
|
|
||
|
module.exports = function PromiseResolve(C, x) {
|
||
|
if (!$PromiseResolve) {
|
||
|
throw new SyntaxError('This environment does not support Promises.');
|
||
|
}
|
||
|
return $PromiseResolve(C, x);
|
||
|
};
|
||
|
|