Skip to content

Commit 9584efa

Browse files
committed
fixup: lint
1 parent 4c8a24b commit 9584efa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/service-provider-core/src/textencoder-polyfill.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ if (
1010
// @ts-ignore
1111
typeof TextEncoder !== 'function'
1212
) {
13-
// eslint-disable-next-line @typescript-eslint/no-implied-eval
1413
const global =
1514
(typeof globalThis === 'object' &&
1615
globalThis?.Object === Object &&
1716
globalThis) ||
17+
// eslint-disable-next-line @typescript-eslint/no-implied-eval
1818
Function('return this')();
1919
Object.assign(global, textEncodingPolyfill());
2020
}

0 commit comments

Comments
 (0)