Skip to content

Commit

Permalink
expose array findlast[index] on index
Browse files Browse the repository at this point in the history
  • Loading branch information
keithamus committed Jun 23, 2023
1 parent ad429db commit 1018b54
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ import * as promiseAllSettled from './promise-allsettled.js'
import * as promiseAny from './promise-any.js'
import * as requestIdleCallback from './requestidlecallback.js'
import * as stringReplaceAll from './string-replaceall.js'
import * as arrayFindLast from './array-findlast.js'
import * as arrayFindLastIndex from './array-findlastindex.js'

export const baseSupport =
typeof Blob === 'function' &&
Expand Down Expand Up @@ -70,7 +72,9 @@ export const polyfills = {
promiseAllSettled,
promiseAny,
requestIdleCallback,
stringReplaceAll
stringReplaceAll,
arrayFindLast,
arrayFindLastIndex
}

export function isSupported() {
Expand Down

0 comments on commit 1018b54

Please sign in to comment.