Mirror: CSS prefixing helpers in less than 1KB ๐ŸŒˆ
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update README

+9
+9
README.md
··· 38 return css; 39 }; 40 ```
··· 38 return css; 39 }; 40 ``` 41 + 42 + Additionally `prefixValue` can accept full declarations to avoid 43 + having to apply it before concatenation, which can be useful in case 44 + you're trying to minimise string operations: 45 + 46 + ```js 47 + const declaration = 'position: sticky'; 48 + prefixValue(declaration, declaration); // 'position: -webkit-sticky, sticky' 49 + ```