https://github.com/0no-co/tiny-css-prefixer
CSS prefixing helpers in less than 1KB 🌈
https://github.com/0no-co/tiny-css-prefixer
Last synced: 12 months ago
JSON representation
CSS prefixing helpers in less than 1KB 🌈
- Host: GitHub
- URL: https://github.com/0no-co/tiny-css-prefixer
- Owner: 0no-co
- License: mit
- Created: 2020-01-15T18:26:02.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-19T07:21:57.000Z (over 5 years ago)
- Last Synced: 2025-03-01T07:22:39.594Z (about 1 year ago)
- Language: JavaScript
- Size: 95.7 KB
- Stars: 67
- Watchers: 3
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Support: SUPPORT.md
Awesome Lists containing this project
- awesome-list - tiny-css-prefixer
README
# `tiny-css-prefixer`
**Bare essentials CSS prefixing helpers in less than 1KB 🌈**
[](https://www.npmjs.com/package/tiny-css-prefixer)
[](https://unpkg.com/tiny-css-prefixer)
Currently supports prefixing properties for most browsers as it makes sense.
[See `SUPPORT.md` for more information on which prefixes and transformations have been omitted.](./SUPPORT.md)
The API is fairly straightforward and only consists of two functions, `prefixProperty` and `prefixValue`.
```js
prefixProperty('margin'); // 0b000
prefixProperty('appearance'); // 0b110
prefixValue('color', 'palevioletred'); // 'palevioletred'
prefixValue('position', 'sticky'); // '-webkit-sticky, sticky'
```
`prefixProperty` returns a bitmap depending on which prefix should be
applied:
- `0b001` stands for `-ms-`
- `0b010` stands for `-moz-`
- `0b100` stands for `-webkit`
These are combined using a binary OR, so an example usage of the
`prefixProperty` helper may look like the following:
```js
const prefix = (prop, value) => {
const flag = prefixProperty(prop);
let css = `${prop}: ${value};\n`;
if (flag & 0b001) css += `-ms-${css}`;
if (flag & 0b010) css += `-moz-${css}`;
if (flag & 0b100) css += `-webkit-${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'
```