We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ddd1c7 commit c9e76c1Copy full SHA for c9e76c1
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# Changelog
2
+
3
+# 8.3.0
4
5
+* Add Promise.any
6
7
### 8.2.0
8
9
* Added Promise.allSettled
10
11
### 8.1.0
dist/polyfill.js
@@ -395,7 +395,7 @@ if (typeof globalNS['Promise'] !== 'function') {
395
} else {
396
if (!globalNS.Promise.prototype['finally']) {
397
globalNS.Promise.prototype['finally'] = finallyConstructor;
398
- }
+ }
399
if (!globalNS.Promise.allSettled) {
400
globalNS.Promise.allSettled = allSettled;
401
}
package.json
@@ -1,6 +1,6 @@
{
"name": "promise-polyfill",
- "version": "8.2.3",
+ "version": "8.3.0",
"description": "Lightweight promise polyfill. A+ compliant",
"main": "lib/index.js",
"module": "src/index.js",
0 commit comments