We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aab34b0 + 2526eb0 commit acd5394Copy full SHA for acd5394
src/index.ts
@@ -70,18 +70,11 @@ export const polyfills = {
70
}
71
72
export function isSupported() {
73
- return (
74
- baseSupport &&
75
- Object.values(polyfills).every(polyfill => {
76
- polyfill.isSupported()
77
- })
78
- )
+ return baseSupport && Object.values(polyfills).every(polyfill => polyfill.isSupported())
79
80
81
export function isPolyfilled() {
82
- return Object.values(polyfills).every(polyfill => {
83
- polyfill.isPolyfilled()
84
+ return Object.values(polyfills).every(polyfill => polyfill.isPolyfilled())
85
86
87
export function apply() {
0 commit comments