# tiny-css-prefixer

> CSS prefixing helpers in less than 1KB

Latest version **1.1.4** (published 2020-01-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install tiny-css-prefixer
pnpm add tiny-css-prefixer
yarn add tiny-css-prefixer
bun add tiny-css-prefixer
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.4 |
| Published | 2020-01-19 |
| First published | 2020-01-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 7.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 68 |
| Author | Phil Pluckthun |
| Maintainers | philpl |
| Keywords | css, prefixer, autoprefixer |

## Links

- npm: https://www.npmjs.com/package/tiny-css-prefixer
- Repository: https://github.com/kitten/tiny-css-prefixer
- Issues: https://github.com/kitten/tiny-css-prefixer/issues
- npm.io page: https://npm.io/package/tiny-css-prefixer

## Alternatives

- [style-dictionary](https://npm.io/package/style-dictionary.md) — 2.0M weekly downloads
- [postcss-merge-idents](https://npm.io/package/postcss-merge-idents.md) — 1.7M weekly downloads
- [@fontsource/noto-sans](https://npm.io/package/@fontsource/noto-sans.md) — 93.0K weekly downloads
- [uglifycss](https://npm.io/package/uglifycss.md) — 71.6K weekly downloads
- [mat4-interpolate](https://npm.io/package/mat4-interpolate.md) — 23.3K weekly downloads

## Recent versions

- 1.1.4 (latest) — 2020-01-19
- 1.1.2 — 2020-01-16
- 1.1.1 — 2020-01-16
- 1.1.0 — 2020-01-15
- 1.0.0 — 2020-01-15

## README

# `tiny-css-prefixer`

**Bare essentials CSS prefixing helpers in less than 1KB 🌈**

[![version](https://img.shields.io/npm/v/tiny-css-prefixer)](https://www.npmjs.com/package/tiny-css-prefixer)
[![gzip size](https://img.badgesize.io/https://unpkg.com/tiny-css-prefixer@latest/dist/tiny-css-prefixer.es.js?compression=gzip)](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'
```

---
_Source: https://npm.io/package/tiny-css-prefixer · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
