Skip to content

Commit a96e444

Browse files
committed
Support for IE property hacks.
Allows for properties like *zoom: 1
1 parent aadbb62 commit a96e444

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
/**
32
* Module dependencies.
43
*/
@@ -105,7 +104,7 @@ module.exports = function(css){
105104

106105
function declaration() {
107106
// prop
108-
var prop = match(/^([-\w]+)\s*/);
107+
var prop = match(/^(\*?[-\w]+)\s*/);
109108
if (!prop) return;
110109
prop = prop[0];
111110

0 commit comments

Comments
 (0)