We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad429db commit 1018b54Copy full SHA for 1018b54
src/index.ts
@@ -13,6 +13,8 @@ import * as promiseAllSettled from './promise-allsettled.js'
13
import * as promiseAny from './promise-any.js'
14
import * as requestIdleCallback from './requestidlecallback.js'
15
import * as stringReplaceAll from './string-replaceall.js'
16
+import * as arrayFindLast from './array-findlast.js'
17
+import * as arrayFindLastIndex from './array-findlastindex.js'
18
19
export const baseSupport =
20
typeof Blob === 'function' &&
@@ -70,7 +72,9 @@ export const polyfills = {
70
72
promiseAllSettled,
71
73
promiseAny,
74
requestIdleCallback,
- stringReplaceAll
75
+ stringReplaceAll,
76
+ arrayFindLast,
77
+ arrayFindLastIndex
78
}
79
80
export function isSupported() {
0 commit comments