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.
every
1 parent aab34b0 commit 29fdba4Copy full SHA for 29fdba4
src/index.ts
@@ -72,16 +72,12 @@ export const polyfills = {
72
export function isSupported() {
73
return (
74
baseSupport &&
75
- Object.values(polyfills).every(polyfill => {
76
- polyfill.isSupported()
77
- })
+ Object.values(polyfills).every(polyfill => polyfill.isSupported())
78
)
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