diff options
author | Vitalii <qwerst13@gmail.com> | 2022-02-08 18:54:32 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-08 18:54:32 +0300 |
commit | ae1cae0a431f6ab8da612f95ee6e0f3056c4a6e7 (patch) | |
tree | 3dba1bc7c44f414f6e6de2212a26519d5301d5ee /files/ru | |
parent | 2a915fc90e4e9a840716578bc024ab27f5bbe837 (diff) | |
download | translated-content-ae1cae0a431f6ab8da612f95ee6e0f3056c4a6e7.tar.gz translated-content-ae1cae0a431f6ab8da612f95ee6e0f3056c4a6e7.tar.bz2 translated-content-ae1cae0a431f6ab8da612f95ee6e0f3056c4a6e7.zip |
RU: Remove warning statement (#4053)
12th edition of ECMA-262 was released at June 2021, so warning can be deleted.
Link on current cpecification with `Promise.any` in it:
https://tc39.es/ecma262/#sec-promise.any
Diffstat (limited to 'files/ru')
-rw-r--r-- | files/ru/web/javascript/reference/global_objects/promise/any/index.html | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/files/ru/web/javascript/reference/global_objects/promise/any/index.html b/files/ru/web/javascript/reference/global_objects/promise/any/index.html index 66b29d694f..69bf25b866 100644 --- a/files/ru/web/javascript/reference/global_objects/promise/any/index.html +++ b/files/ru/web/javascript/reference/global_objects/promise/any/index.html @@ -7,10 +7,6 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Promise/any <p><code>Метод Promise.any()</code> принимает итерируемый объект содержащий объекты промисов {{JSxRef("Promise")}}. Как только один из промисов (<code>Promise)</code> выполнится успешно (<code>fullfill</code>), метод возвратит единственный объект <code>Promise</code> со значением выполненного промиса. Если ни один из промисов не завершится успешно (если все промисы завершатся с ошибкой, т.е. <code>rejected</code>), тогда возвращённый объект Promise будет отклонён (<code>rejected</code>) с одним из значений: массив содержащий причины ошибки (отклонения), или {{JSxRef("AggregateError")}} — подкласс {{JSxRef("Error")}}, который объединяет выброшенные ошибки вместе. По существу, метод <code>Promise.any()</code> является противоположностью для {{JSxRef("Promise.all()")}}.</p> -<div class="blockIndicator warning"> -<p><strong>Warning!</strong> The <code>Promise.any()</code> method is experimental and not fully supported by all browsers. It is currently in the <a href="https://github.com/tc39/proposal-promise-any" rel="external">TC39 Candidate stage (Stage 3)</a>.</p> -</div> - <h2 id="Синтаксис">Синтаксис</h2> <pre>Promise.any(<var>iterable</var>);</pre> |