Skip to content

Commit 1018b54

Browse files
committed
expose array findlast[index] on index
1 parent ad429db commit 1018b54

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/index.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ import * as promiseAllSettled from './promise-allsettled.js'
1313
import * as promiseAny from './promise-any.js'
1414
import * as requestIdleCallback from './requestidlecallback.js'
1515
import * as stringReplaceAll from './string-replaceall.js'
16+
import * as arrayFindLast from './array-findlast.js'
17+
import * as arrayFindLastIndex from './array-findlastindex.js'
1618

1719
export const baseSupport =
1820
typeof Blob === 'function' &&
@@ -70,7 +72,9 @@ export const polyfills = {
7072
promiseAllSettled,
7173
promiseAny,
7274
requestIdleCallback,
73-
stringReplaceAll
75+
stringReplaceAll,
76+
arrayFindLast,
77+
arrayFindLastIndex
7478
}
7579

7680
export function isSupported() {

0 commit comments

Comments
 (0)