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

Update README

Changed files
+9
+9
README.md
···
return css;
};
```
···
return css;
};
```
+
+
Additionally `prefixValue` can accept full declarations to avoid
+
having to apply it before concatenation, which can be useful in case
+
you're trying to minimise string operations:
+
+
```js
+
const declaration = 'position: sticky';
+
prefixValue(declaration, declaration); // 'position: -webkit-sticky, sticky'
+
```