|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 13 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
639 bytes
|
| Line | |
|---|
| 1 | 'use strict';
|
|---|
| 2 |
|
|---|
| 3 | var $TypeError = require('es-errors/type');
|
|---|
| 4 |
|
|---|
| 5 | var Get = require('./Get');
|
|---|
| 6 | var IsCallable = require('./IsCallable');
|
|---|
| 7 | var IsConstructor = require('./IsConstructor');
|
|---|
| 8 |
|
|---|
| 9 | // https://262.ecma-international.org/12.0/#sec-getpromiseresolve
|
|---|
| 10 |
|
|---|
| 11 | module.exports = function GetPromiseResolve(promiseConstructor) {
|
|---|
| 12 | if (!IsConstructor(promiseConstructor)) {
|
|---|
| 13 | throw new $TypeError('Assertion failed: `promiseConstructor` must be a constructor');
|
|---|
| 14 | }
|
|---|
| 15 | var promiseResolve = Get(promiseConstructor, 'resolve');
|
|---|
| 16 | if (IsCallable(promiseResolve) === false) {
|
|---|
| 17 | throw new $TypeError('`resolve` method is not callable');
|
|---|
| 18 | }
|
|---|
| 19 | return promiseResolve;
|
|---|
| 20 | };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.