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.
1 parent a398097 commit 541d6e9Copy full SHA for 541d6e9
lib/utils/getPrefix.es6
@@ -11,7 +11,7 @@ export function getPrefix(prop: string='transform'): string {
11
if (prop in style) return '';
12
13
for (let i = 0; i < prefixes.length; i++) {
14
- if (browserPrefixToStyle(prop, prefixes[i]) in style) return prefixes[i];
+ if (browserPrefixToKey(prop, prefixes[i]) in style) return prefixes[i];
15
}
16
17
return '';
0 commit comments