Skip to content

Commit 12b34e6

Browse files
authored
Include string-replaceall in polyfills
1 parent b2028cb commit 12b34e6

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import * as objectHasOwn from './object-hasown.js'
99
import * as promiseAllSettled from './promise-allsettled.js'
1010
import * as promiseAny from './promise-any.js'
1111
import * as requestIdleCallback from './requestidlecallback.js'
12+
import * as stringReplaceAll from './string-replaceall.js'
1213

1314
const baseSupport =
1415
typeof Blob === 'function' &&
@@ -54,7 +55,8 @@ const polyfills = [
5455
objectHasOwn,
5556
promiseAllSettled,
5657
promiseAny,
57-
requestIdleCallback
58+
requestIdleCallback,
59+
stringReplaceAll
5860
]
5961

6062
export function isSupported() {

0 commit comments

Comments
 (0)