diff --git a/src/index.ts b/src/index.ts index fbd9b1e..e31e324 100644 --- a/src/index.ts +++ b/src/index.ts @@ -67,6 +67,6 @@ export function isPolyfilled() { export function apply() { for (const polyfill of Object.values(polyfills)) { - polyfill.apply() + if (!polyfill.isSupported()) polyfill.apply() } }