Skip to content

Commit c9e76c1

Browse files
committedJan 20, 2023
8.3.0: Promoise.any
1 parent 0ddd1c7 commit c9e76c1

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed
 

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
2+
3+
# 8.3.0
4+
5+
* Add Promise.any
6+
27
### 8.2.0
8+
39
* Added Promise.allSettled
410

511
### 8.1.0

‎dist/polyfill.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ if (typeof globalNS['Promise'] !== 'function') {
395395
} else {
396396
if (!globalNS.Promise.prototype['finally']) {
397397
globalNS.Promise.prototype['finally'] = finallyConstructor;
398-
}
398+
}
399399
if (!globalNS.Promise.allSettled) {
400400
globalNS.Promise.allSettled = allSettled;
401401
}

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "promise-polyfill",
3-
"version": "8.2.3",
3+
"version": "8.3.0",
44
"description": "Lightweight promise polyfill. A+ compliant",
55
"main": "lib/index.js",
66
"module": "src/index.js",

0 commit comments

Comments
 (0)
Please sign in to comment.